.form-wrapper {
    width: 100%;
    background-color: #fafafa;
    padding: 60px 0;
}
.form-container {
    width: 420px;
    background-color: white;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.form-header {
    width: 100%;
    height: 60px;
    background-color: pink;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
}
.form-body {
    padding: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.required {
    color: tomato;
    padding-left: 2px;
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: hotpink;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.2);
}
.radio-label {
    display: inline-block !important;
    font-weight: normal !important;
    font-size: 13px !important;
    margin-right: 20px;
    cursor: pointer;
    color: #555 !important;
}
.radio-label input {
    vertical-align: middle;
    margin-right: 4px;
    accent-color: hotpink;
}
.fs-11 {
    font-size: 11px !important;
}
.fs-11 label {
    font-size: 12px !important;
    color: #666;
}

/* ===== CHECKBOX (Ghi nhớ đăng nhập / Đồng ý điều khoản) ===== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    margin-top: 2px;
    margin-right: 6px;
    accent-color: hotpink;
}

.checkbox-group label {
    display: inline;
    font-size: 13px;
    color: #555;
    font-weight: normal;
    cursor: pointer;
}
.btn-submit {
    width: 100%;
    height: 45px;
    background-color: hotpink;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.3);
}

.btn-submit:hover {
    background-color: deeppink;
}
.form-footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.form-footer-links a {
    color: hotpink;
    text-decoration: none;
}

.form-footer-links a:hover {
    text-decoration: underline;
    color: deeppink;
}

.green-link {
    color: hotpink !important;
    text-decoration: none;
    font-weight: bold;
}

.green-link:hover {
    text-decoration: underline;
    color: deeppink !important;
}
.min-height-login {
    min-height: 400px;
}
#top {
    width: 100%;
    background-color: #ff69b4; 
    color: white;
    font-size: 14px;
    padding: 10px 0;
}

#top-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#top-left a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#top-right a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#top-right a:hover {
    text-decoration: underline;
}