html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('/frontend/images/auth.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
}

.content {
    background-color: rgba(75, 75, 181, 0.9);
    /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 20px;
    width: 360px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional shadow for better contrast */
}

.input {
    background-color: #a4a4da80;
    border: 1px solid #ffffffb3;
    border-radius: 10px;
    padding-left: 35px;
}
.input::placeholder {
    color: #ffffffb3;
}
