/* ─── Auth Pages Common Styles ─────────────────────────── */

.auth {
    background-color: rgb(255, 255, 255);
    margin: 50px 0px;
}

.auth .auth-img {
    width: 250px;
}

.auth label {
    color: black;
}

.auth .auth-form-title {
    font-weight: 800;
    margin-bottom: 40px;
}

.auth .auth-form-width {
    width: 60%;
}

.auth .carousel-title {
    text-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.auth .carousel-content {
    text-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.auth .carousel-img {
    border-radius: 10px;
}

.auth .invalid-feedback {
    color: red;
    display: block;
    margin-top: 4px;
    font-size: 13px;
}

/* ─── Unified Bordered Input Group ─────────────────────── */

.auth .auth-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d9dee3;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out;
    overflow: hidden;
}

.auth .auth-input-group:focus-within {
    border-color: #ff5e00;
}

.auth .auth-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: #697a8d;
    font-size: 15px;
    flex-shrink: 0;
}

.auth .auth-input-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: #697a8d;
    font-size: 15px;
    flex-shrink: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.auth .auth-input-icon-right:hover {
    color: #566a7f;
}

.auth .auth-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 14px;
    color: #566a7f;
    background: transparent;
    min-width: 0;
}

.auth .auth-input::placeholder {
    color: #a1acb8;
}

/* ─── Remember Me & Forgot Password ───────────────────── */

.auth .remember-me-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.auth .remember-me-wrapper label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    color: #566a7f;
}

.auth .remember-me-wrapper input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
}

.auth .forgot-link {
    font-size: 14px;
    text-decoration: none;
}

.auth .forgot-link:hover {
    text-decoration: underline;
}

/* ─── Responsive ───────────────────────────────────────── */

@media only screen and (max-width: 768px) {
    .auth .auth-form-width {
        width: 100%;
    }

    .auth .col-12.vh-100 {
        height: 80vh !important;
    }

    .auth .mb-5 {
        margin-bottom: 0.5rem !important;
    }
}

@media only screen and (max-width: 576px) {

}
