body {
    font-family: Arial, sans-serif;
    background-color: #36373e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #2c2d32;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 320px;
}

h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #232323;
    border-radius: 5px;
    background-color: #40444b;
    color: #fff;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #7289da;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #677bc4;
}

p {
    color: #c4c5c9;
    font-size: 14px;
    text-align: center;
}

a {
    color: #7289da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.error-message {
    color: #d83a41;
    min-height: 20px;
    margin-top: 10px;
}