/* Custom CSS for Register Page */

/* Login form styling from original template */
.login-area {
    padding: 120px 0;
}

/* Step instruction styling */
.step-instruction {
    font-weight: 500;
    color: #444;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Form input styling */
.form-control::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 0.9em;
}

.login-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    max-height: 70px;
    margin-bottom: 15px;
}

.login-header h2 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.login-header p {
    color: #666;
    margin-top: 10px;
}

.login-form .input-group {
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.login-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #ff4e00;
    font-size: 1.2rem;
    width: 46px;
    justify-content: center;
}

.login-form .form-control {
    border-left: none;
    padding: 12px 15px;
    height: 50px;
}

.login-form .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.login-form .theme-btn,
.login-form .btn-primary {
    padding: 12px 30px;
    background-color: #ff4e00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 50px;
}

.login-form .theme-btn:hover,
.login-form .btn-primary:hover {
    background-color: #e64500;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.login-footer p {
    color: #666;
    margin-bottom: 0;
}

.login-footer a {
    color: #ff4e00;
    font-weight: 500;
}

/* Custom styling for progress bar */
.progress {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: #f1f1f1;
}

.progress-bar {
    background-color: #ff4e00;
}

/* Input field styling */
.form-control {
    height: calc(3rem + 2px);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #ff4e00;
    box-shadow: 0 0 0 0.2rem rgba(255, 78, 0, 0.25);
}

/* Button styling */
.btn-primary {
    background-color: #ff4e00;
    border-color: #ff4e00;
    padding: 12px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e64500;
    border-color: #e64500;
}

/* Form elements */
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-check-label {
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #ff4e00;
    border-color: #ff4e00;
}

/* Password requirements styling */
.password-requirements {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.password-requirements small {
    margin-bottom: 8px;
    font-size: 13px;
    display: block;
}

.password-requirements small i {
    margin-right: 5px;
    width: 14px;
}

/* Links styling */
a {
    color: #ff4e00;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e64500;
    text-decoration: underline;
}

/* Alert styling */
.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #ffeaea;
    border-color: #ffd0d0;
    color: #d63939;
}

.alert-info {
    background-color: #e6f7ff;
    border-color: #bae3ff;
    color: #0086c9;
}

/* Card styling enhancement */
.card {
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.card-body {
    padding: 30px !important;
}

/* Toggle password button */
#togglePassword {
    background-color: transparent;
    border: none;
    border-left: 1px solid #ced4da;
    color: #666;
}

#togglePassword:hover {
    color: #ff4e00;
}

/* Verification code styling */
input[name="verification_code"] {
    font-weight: bold;
    letter-spacing: 0.5em;
}

/* Additional spacing */
.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .login-form {
        padding: 25px 15px;
    }
    
    .card-body {
        padding: 20px !important;
    }
}
