* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* PAGE */
body.auth-page {
    min-height: 100vh;
    background: url("../img/auth/auth-bg.png") no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAPPER */
.auth-wrapper {
    width: 100%;
    padding: 20px;
}

/* CARD */
.auth-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* TITLE */
.auth-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 6px;
}

.auth-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

/* INPUT FIELD */
.input-group input {
    width: 100%;
    height: 52px;              /* ⭐ এটা মূল জিনিস */
    padding-left: 52px;
    padding-right: 80px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
}

/* LEFT ICON */
.input-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.7;
    pointer-events: none;
}

/* PASSWORD GROUP */
.password-group {
    position: relative;
}

/* RIGHT EYE ICON */
.password-group .toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    cursor: pointer;
    z-index: 10;
}

/* BUTTON */
.auth-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f6ef7, #5a7bff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* LINK */
.auth-link {
    text-align: center;
    margin-top: 18px;
}

.auth-link a {
    color: #4f6ef7;
    font-weight: 600;
    text-decoration: none;
}

.toggle-pass {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    cursor: pointer;
    z-index: 10;
}

.input-group input:focus {
    border-color: #4f6ef7;
    box-shadow: 0 0 0 2px rgba(79,110,247,.12);
}