.input-field.col label {
    margin-top: -32px;
}

form .row {
    margin-bottom: 12px;
}

.btn {
    width: 100%;
    height: 48px;
}

h5 {
    margin-bottom: 32px;
    margin-top: 32px;
    text-align: left;
}

/* Remove the default underline of the active tab */
.tabs .indicator {
    background-color: transparent !important;
    /* Makes the underline invisible */
    height: 0 !important;
    /* Ensures no height for the underline */
}

.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
}

.tabs .tab a {
    color: #fff;
}

.tabs .tab a:hover {

    color: var(--color-green)
}

.forgot-password {
    color: var(--color-green)
}

.tabs .tab a {
    color: #fff;
    border-radius: 70px;
}

.tabs .tab a.active {
    background-color: #ffffff;
    color: #000;
    border-radius: 20px;
    background: var(--color-green) !important;
    border-radius: 70px;
    color: white;
    border-bottom: none;
}


.btn-custom {
    background-color: #81d4fa;
    color: #000;
}

.btn-custom:hover {
    background-color: #4fc3f7;
}

.signup-link {
    color: var(--color-green);
}

.signin-link {
    color: var(--color-green);
}

.tabs .tab {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* Style for non-active tabs */
.tabs .tab a:not(.active) {
    color: #b0b0b0;
    /* Gray color for non-active tabs */
    background-color: pink;
    /* Transparent background */
    font-weight: normal;
    /* Regular weight */
    transition: color 0.3s ease;
    /* Smooth transition */
    background: lightslategray;
    border-radius: 0 70px 70px 0 !important;
    /* Only right corners are rounded */
    color: white;
    color: var(--color-green);
    background-color: transparent;
}

form {
    padding: 0px;
}

/* Native remember-me checkbox (avoid Materialize duplicate pseudo-checkbox) */
#signin-form .signin-remember-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #24292F;
}

#signin-form .signin-remember-checkbox {
    -webkit-appearance: checkbox;
    appearance: checkbox;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    cursor: pointer;
    position: static;
    opacity: 1;
    pointer-events: auto;
}

#signin-form .signin-remember-row {
    margin-bottom: 16px;
}

#signin-form .signin-2fa-label {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 500;
    color: #24292F;
}

.signin-2fa-boxes {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}

#signin-form .signin-2fa-digit {
    flex: 0 0 52px;
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    height: 52px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-indent: 0;
    line-height: 48px;
    font-size: 22px;
    font-weight: 600;
    border: 2px solid #DFE1E5;
    border-radius: 8px;
    background: #fff;
    color: #24292F;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

#signin-form .signin-2fa-digit:focus {
    outline: none;
    border-color: var(--color-green, #4caf50);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.signin-2fa-hint {
    margin: 8px 0 0;
    font-size: 14px;
}