body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 100%;
    min-height: 280px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #4d4c4c;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #548cd9;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

.errors {
    background-color: rgb(241, 221, 221);
    border: 1px solid red;
    width: 100%;
    color: #d9534f;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
}

img {
    display: block;
    margin: 0 auto 15px auto;
    /* Center the image horizontally */
}

.wrap_login {
    width: 100%;
    text-align: center;
}

.span_login {
    font-size: 25px;
    font-weight: 600;
}