

/* Fullscreen background with overlay */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/0.jpg') center/cover no-repeat;
}

/* Centered login card */
.auth-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Card style */
.card {
    background: #f9fbfd;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 380px;
    width: 100%;
    padding: 30px;
}

/* Card body */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-box {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
}

/* Inputs */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.input-group {
    width: 100%;
}

/* Login button */
.loginBtn {
    width: 100%;
    background-color: #115da8;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    cursor: pointer;
}

    .loginBtn:hover {
        background-color: #0d4a87;
    }
