.login-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: fit-content;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}