:root {
    --primary-color: white;
    --secondary-color: #32fbe2;
}

body {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: "Playfair Display", cursive;
    font-size: 20px;
    margin: 0;
}

#form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    padding: 20px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: rgba(7, 7, 7, 0.8);
    color: white;
}

.logo{
    height: 100px;
    width: 80 px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: red;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Playfair Display", cursive;
    font-size: 20px;
}

button[type="submit"] {
    width: 100%;
    background-color: red;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Playfair Display", cursive;
    font-size: 20px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: red;
}

.error-message {
    color: darkred;
    font-weight: bold;
    text-align: center;
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0069d9;
}

.small-list {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    width: 400px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.small-list li {
    background-color: #281539;
    color: #178ad1;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5px;
}


h1,
h2,
h3 {
    color: white;
    font-size: 35px;
}