/* General Styling */
.account-page {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.account-page .container {
    max-width: 1100px;
}

.account-page .account-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

/* Form Container */
.account-page .form-container {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.account-page .form-header {
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.account-page .form-header.login-header {
    background-color: #8dbd43; /* Green from image */
}

.account-page .form-header.register-header {
    background-color: #0d8ac1; /* Blue from image */
}

.account-page .form-body {
    padding: 30px;
}

/* Form Elements */
.account-page .form-group {
    margin-bottom: 20px;
}

.account-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.account-page .form-group label .required {
    color: #dc3545;
    margin-left: 2px;
}

.account-page .login-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background-color: #f1f5f9;
    transition: all 0.3s ease;
}

.account-page .login-form-control:focus {
    outline: none;
    border-color: #16BAE4;
    box-shadow: 0 0 0 3px rgba(22, 186, 228, 0.2);
    background-color: #fff;
}

.account-page .mobile-number-group {
    display: flex;
}

.account-page .mobile-number-group .country-code {
    width: 60px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    background-color: #e9ecef;
    font-weight: 600;
}

.account-page .mobile-number-group .login-form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Buttons */
.account-page .login-btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.account-page .btn-login, .account-page .login-btn-login {
    background-color: #5e9c31; /* Darker Green */
    color: #fff;
}
.account-page .btn-login:hover, .account-page .login-btn-login:hover {
    background-color: #4a7a27;
}

.account-page .btn-register, .account-page .login-btn-register {
    background-color: #007bff;
    color: #fff;
}
.account-page .btn-register:hover, .account-page .login-btn-register:hover {
    background-color: #0069d9;
}

/* Links and Checkboxes */
.account-page .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.account-page .remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.account-page .remember-me input {
    margin-right: 8px;
}

.account-page .forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.account-page .forgot-password a:hover {
    text-decoration: underline;
}

.account-page .register-info {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
}

/* Responsive */
@media(max-width: 768px) {
    .account-page .register-form {
        margin-top: 30px;
    }
} 