/* =========================
   LOGIN PAGE
========================= */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.login-box {
    width: 350px;
}

/* Labels */
.login-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Inputs */
.login-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Focus effect (blue glow like screenshot) */
.login-box input:focus {
    outline: none;
    border-color: #2f6edb;
    box-shadow: 0 0 0 3px rgba(47, 110, 219, 0.2);
}

/* Password row */
.password-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reset-link {
    font-size: 13px;
    color: #2f6edb;
    text-decoration: none;
}

/* Password input with eye */
.password-input {
    position: relative;
}

.password-input .eye {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

/* Login button */
.login-btn {
    width: 100%;
    margin-top: 10px;
}

/* Signup text */
.signup-text {
    text-align: center;
    margin-top: 15px;
    color: #2f6edb;
    cursor: pointer;
}