/* SIGN UP CARD  */
.signup-card {
    position: relative;
    margin: 50px 20px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 22px;
    padding: 40px 35px;
    width: 100%;
    max-width: 700px;
    color: #fff;

    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    background-image:
        radial-gradient(circle at 20% 20%, rgba(120,150,210,0.25), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(60,90,150,0.18), transparent 70%);

    border: 2px solid rgba(180, 210, 255, 0.45);

    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.10),
        0 12px 30px rgba(0, 0, 0, 0.65),
        inset 0 5px 12px rgba(200, 230, 255, 0.35),
        inset 0 -3px 10px rgba(0, 0, 0, 0.45);
}

/* Header */
.jtbit-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #d4af37;
}

h6 {
    color: #fff;
    font-size: 23px;
}


/* Ensures the entire logo container is centered */
.logo-link,
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Prevent color or underline changes */
.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}


/* FORM FIELDS  */
.form-control,
.form-select {
    background-color: #111a2b !important;
    border: 1px solid #2c3548 !important;
    color: #9fb0cc !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    transition: all 0.25s ease !important;
}

.form-control::placeholder {
    color: #9fb0cc !important;
}

.form-control:hover,
.form-select:hover {
    background-color: #1a2336 !important;
    border-color: #3a465e !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #D4AF37 !important;
    background-color: #111a2b !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35) !important;
    color: #fff !important;
}

label {
    color: #fff;
    font-size: 0.9rem;
}

/* intl-tel-input */
.iti {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
    color: #ffffff !important;
}

.iti__selected-flag {
    background-color: #182d4d !important;
    border-radius: 5px 0 0 5px;
}

.iti input.form-control {
    padding-left: 88px !important;
    height: 42px;
}

.iti__country-list {
    background-color: #000814;
    color: #fff;
    max-height: 200px;
    overflow-y: auto;
    border: none;
}

.iti__country {
    color: #fff;
}

.iti__country:hover {
    background-color: #333;
}

/* Scrollbar color */
.iti__country-list::-webkit-scrollbar {
    width: 8px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #000814;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

.password-toggle{
    padding: 23px 5px 0px 0px;
}

/* Sign up button */
.btn-create {
    width: 100%;
    font-weight: 600;
    background-image: linear-gradient(to right, #d4af37, #f5d97a);
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px;
    transition:
        background-image 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-create:hover {
    background-image: linear-gradient(to right, #b4911f, #dfbe54);
    transform: scale(1.05);
}

/* Terms */
.form-check-label {
    color: #e4e3e3 !important;
}

.form-check-label a {
    color: #0096ff;
    text-decoration: none;
}

.form-check-label a:hover {
    color: #5fdaff;
}

/* Hide/Show Icon */
.password-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #a8a7a7;
}

.password-toggle:hover {
    color: #fff;
}

/* Signin link */
.signin-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.signin-link a {
    color: #0096ff;
    text-decoration: none;
}

.signin-link a:hover {
    color: #5fdaff;
    text-decoration: none;
}

/* CONFIRMATION MODAL */
.confirm-modal {
    background: #1d1d1d;
    color: #fff;
    border-radius: 14px;
    border: 1px solid #414141;
    padding: 20px;
}

.confirm-modal .modal-header,
.confirm-modal .modal-footer {
    border: none;
}

.confirm-modal .modal-title {
    color: #D4AF37;
    font-weight: 600;
}

.confirm-modal label {
    color: #c7c7c7;
}

/* Modal buttons */
.confirm-modal .btn-warning {
    background: linear-gradient(90deg, #D4AF37, #f5d97a, #FFD700);
    color: #04060a;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 20px;
    transition: all 0.25s ease;
}

.confirm-modal .btn-warning:hover {
     transform: scale(1.07);
    background: linear-gradient(90deg, #FFD700, #f5d97a, #D4AF37);
}

.confirm-modal .btn-secondary {
    background: linear-gradient(90deg, #5f5f5f, #e6e6e6, #999999);
    color: #04060a;
    border-radius: 8px;
    border: 1px solid #3c455a;
    padding: 8px 20px;
    font-weight: 600;
    margin-right: 20px;
    transition: all 0.25s ease;
}

.confirm-modal .btn-secondary:hover {
  background: linear-gradient(90deg, #999999, #e6e6e6, #5f5f5f);
     transform: scale(1.07);
}

/* SUCCESS TOAST MODAL  */
.success-toast {
    background: #1d1d1d !important;
    border: 1px solid #1b253b !important;
    border-radius: 14px !important;
    padding: 25px 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.check-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #28c76f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    animation: popscale .35s ease-out;
}

.checkmark-icon {
    font-size: 2.3rem;
    color: #28c76f;
}

.success-title {
    color: #28c76f;
    font-weight: 700;
    font-size: 1.25rem;
}

.success-message {
    color: #c7c7c7;
    margin-top: 4px;
    font-size: 0.9rem;
}

@keyframes popscale {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* color for the calendar icon */
#dob::-webkit-calendar-picker-indicator {
    filter: invert(76%) sepia(9%) saturate(355%) hue-rotate(181deg) brightness(89%) contrast(86%);
    opacity: 1;
}

#dob::-moz-calendar-picker-indicator {
    filter: invert(76%) sepia(9%) saturate(355%) hue-rotate(181deg) brightness(89%) contrast(86%);
    opacity: 1;
}

