* {
    box-sizing: border-box;
    margin: 0; padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #121825;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
}
.login-container {
    background-color: #1f2b3a;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 380px;
}
.login-header {
    text-align: center;
    margin-bottom: 20px;
}
.login-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #bbb;
}
.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon i {
    position: absolute;
    left: 12px;
    color: #888;
    font-size: 16px;
    pointer-events: none;
}
.input-icon input {
    width: 100%;
    padding: 10px 13px 10px 35px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    background-color: #2a3b4d;
    color: #fff;
}
.input-icon input:focus {
    outline: none;
    background-color: #34495e;
}
.login-button {
    background: linear-gradient(to right, #7f5af0, #5b3ddc);
    border: none;
    padding: 11px;
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.login-button i {
    font-size: 16px;
}
.login-button:hover {
    background: linear-gradient(to right, #6b4be5, #472fc7);
}
.forgot-password {
    text-align: center;
    margin-top: 14px;
}
.forgot-password a {
    color: #aaa;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.forgot-password a:hover {
    text-decoration: underline;
}
.alert {
    background-color: #e63946;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    color: white;
    font-size: 13px;
}