/* ===== AGTOP SYSTEM REGISTER PAGE ===== */

/* Background whole register section */
#auth {
    background: #eef3fb !important;
}

/* Register card */
#auth .card {
    background: #ffffff !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
    border: 1px solid #e5e7eb !important;
}

/* Form input fields */
#auth input,
#auth select {
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
    height: 44px !important;
}

/* Input focus style */
#auth input:focus,
#auth select:focus {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15) !important;
}

/* Register button */
#auth .btn-primary {
    background: #4f46e5 !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

/* Register button hover */
#auth .btn-primary:hover {
    background: #3730a3 !important;
}

/* Button text color */
#auth .btn-primary {
    color: #ffffff !important;
}

/* Links color */
#auth a {
    color: #4f46e5 !important;
}

/* Links hover */
#auth a:hover {
    color: #3730a3 !important;
}     /* Fix Terms & Privacy checkbox layout */
#auth .form-check {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

/* Checkbox style */
#auth .form-check-input {
    width: 18px !important;
    height: 18px !important;
    border-radius: 6px !important;
    border: 1px solid #cbd5e1 !important;
    cursor: pointer !important;
}

/* Checkbox checked color */
#auth .form-check-input:checked {
    background-color: #4f46e5 !important;
    border-color: #4f46e5 !important;
}

/* Terms text */
#auth .form-check-label {
    font-size: 14px !important;
    color: #475569 !important;
}

/* Terms links */
#auth .form-check-label a {
    color: #4f46e5 !important;
    font-weight: 500 !important;
}