body {
    font-family: Arial, sans-serif;
    background: url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    block-size: 100vh;
    margin: 0;
}

form {
    inline-size: 300px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
}

input {
    inline-size: 93%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #00eaff;
}

.logo {
    inline-size: 200px;
    margin: 0 auto 20px;
    display: block;
    margin-block-end: -30px;
}

.divider {
    margin: 20px 0;
}

.divider2 {
    border: none;
    margin: 10px 0;
}