body {
    font-family: 'Inter', sans-serif;
    background-color: #f2f3f3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}
h1 {
    color: #152939;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    color: #152939;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
input {
    width: 97%;
    padding: 10px 5px;
    border: 1px solid #c4c4c4;
    border-radius: 3px;
    font-size: 14px;
    color: #152939;
}
input:focus {
    outline: none;
    border-color: #007eff;
    box-shadow: 0 0 0 2px rgba(0,126,255,.5);
}
button {
    width: 100%;
    padding: 12px;
    background-color:#4e98cf;;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #4e98cf;
}
.error-message {
    color: #d93025;
    font-size: 14px;
    margin-top: 10px;
}
.status-message {
    color: #155724;
    font-size: 14px;
    margin-top: 10px;
}