body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    text-align: center;
    font-size: 1rem;
    width: 350px;
}

h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.error-message {
    color: red;
    margin-top: 1rem;
}

.success-message {
    color: #28a745;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

input {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #D45A5A;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

button:hover {
    background-color: #c85555;
}

p {
    margin-bottom: 2rem;
}

label {
    display: block;
    text-align: left;
}

label[for="password"] {
    margin-top: 1.5rem;
}

img {
    width: 6rem;
    margin-bottom: 1rem;
}

.login-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forgot-password-link {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.forgot-password-link a {
    color: #D45A5A;
    text-decoration: none;
}

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