* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #1d2671, #c33764);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 380px;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.login-card h2 {
    text-align: center;
    color: #1d2671;
    font-size: 28px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 40px;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #777;
}

.eye-icon:hover {
    color: #1d2671;
}

.form-options {
    text-align: right;
    margin-bottom: 15px;
}

.forgot-link {
    font-size: 13px;
    text-decoration: none;
    color: #1d2671;
}

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

.btn-login {
    width: 100%;
    padding: 11px;
    border: none;
    background: #1d2671;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.btn-login:hover {
    background: #151a5c;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    margin-top: 18px;
    color: #999;
}
.message-box p {
    background-color: #ffe6e6;
    color: #cc0000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}
