body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1d2b64, #f8cdda);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #ffffff;
    padding: 40px 35px;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
}

.logo {
    height: 90px;
    margin-bottom: 15px;
}

h2 {
    margin-bottom: 25px;
    color: #1d2b64;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #1d2b64;
}

button {
    width: 100%;
    padding: 12px;
    background: #1d2b64;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #162f59;
}

.forgot {
    margin-top: 12px;
}

.forgot a {
    font-size: 13px;
    color: #1d2b64;
    text-decoration: none;
}

.error {
    background: #ffe0e0;
    color: #b30000;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 13px;
}

.password-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
}

.password-wrapper input {
    border: none;
    outline: none;
    font-size: 14px;
    flex: 1;
    background: transparent;
    margin: 0;
    padding: 0;
}

.toggle-password {
    color: #1d2b64;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
}









.success-box {
    background: #e6f9ec;
    border: 1px solid #2ecc71;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.success-box p {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.login-btn:hover {
    background: #1a252f;
}