/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 350px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    text-align: center;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label,
.input-group input {
    display: block;
    width: 100%;
}

.input-group input {
    padding: .75rem;
    margin-top: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: .75rem;
    color: white;
    background-color: #5c67f2;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}