body {
    font-family: 'Inter', sans-serif;
    background-color: #FCF5EA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.login-box {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    background-color: #cbc4b8ff;
    width: 100%;
    padding: 15px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
}

button {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    font-size: 16px;
    background-color: #0788e3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #075d9b;
}

.message {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.message.success {
    color: green;
}

.message.error {
    color: red;
}