* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #393939;
}

/* Class cha */
.account-page {
    min-height: 100vh;
    background: rgb(2 181 22 / 7%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Container chứa form */
.account-page .form-container {
    background: white;
    box-shadow: 0 0 2.1875rem 0 rgba(154, 161, 171, 0.15);
    width: 100%;
    max-width: 540px;
    padding: 40px;
    position: relative;
    border-radius: 4px;
}

/* Logo */
.account-page .form-container .logo {
    text-align: center;
    margin-bottom: 15px;
}

.account-page .form-container .logo img {
    width: 180px;
    height: auto;
}

/* Form wrapper để toggle giữa login và register */
.account-page .form-container .forms-wrapper {
    position: relative;
}

/* Form group */
.account-page .form-container .form-group {
    margin-bottom: 20px;
}

.account-page .form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.account-page .form-container .form-group label .required {
    color: #f72b50;
}

.account-page .form-container .form-group input,
.account-page .form-container .form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #f5f5f5;
    border-radius: 14px;
    font-size: 14px;
    transition: all 0.3s;
    color: #6e6e6e;
}

.account-page .form-container .form-group input:focus,
.account-page .form-container .form-group select:focus {
    outline: none;
    border-color: #02b516;
}

/* Phone input group */
.account-page .form-container .phone-input-group {
    display: flex;
}

.account-page .form-container .phone-input-group .country-code {
    width: 180px;
    background: #02b516;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 14px 0 0 14px;
}

.account-page .form-container .phone-input-group .country-code option {
    background: #FFF;
    color: #000;
}

.account-page .form-container .phone-input-group .phone-number {
    flex: 1;
    border-radius: 0 14px 14px 0;
}

/* Checkbox */
.account-page .form-container .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-page .form-container .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #02b516; /* màu bạn muốn */
}

.account-page .form-container .checkbox-group label {
    margin: 0;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    font-weight: normal;
}

.account-page .form-container .checkbox-group a {
    color: #02b516;
    text-decoration: none;
}

/* Forgot password link */
.account-page .form-container .forgot-password a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.account-page .form-container .forgot-password a:hover {
    color: #c72e09;
}

.check-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Submit button */
.account-page .form-container .submit-btn {
    width: 100%;
    padding: 14px;
    background: #02b516;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.account-page .form-container .submit-btn:hover {
    background: #02b516;
}

/* Toggle form links */
.account-page .form-container .toggle-form {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.account-page .form-container .toggle-form a {
    color: #02b516;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* Language selector */
.account-page .form-container .language-selector {
    text-align: center;
    margin-top: 15px;
}

.account-page .form-container .language-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.invalid-alert {
    font-size: 13px;
    margin-top: 10px;
}

.text-danger {
    color: #F00;
}

.input-with-icon {
    position: relative;
}

.input-with-icon svg {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.input-with-icon input {
    padding: 14px 45px 14px 15px !important;
}

.d-none {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .account-page .form-container {
        padding: 30px 20px;
    }

    .account-page .form-container .logo-text {
        font-size: 28px;
    }
}