body {
    background-color: #ffffff;
    color: white;
    /* background-color: antiquewhite; */
    background: radial-gradient(circle, rgba(11, 16, 126, 1) 25%, rgba(12, 0, 49, 1) 100%);
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    width: 90%;
    max-width: 400px;
    background-color: #ffffff1a;
    /* box-shadow      : 0 0 9px 0 rgba(0, 0, 0, 0.3); */
    box-shadow: 0 0 18px 3px rgb(255 255 255 / 56%);
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    /* Remove these positioning properties as they're no longer needed */
    /* margin: 100px auto; */
    /* position: relative; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

.login h1 {
    text-align: center;
    color: #4648d3;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
}

.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #4648d3;
    color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 100%;
    max-width: 240px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 32px;
}

.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 16px;
    /* margin-bottom: 45px; */
    background-color: #4648d3;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
    background-color: #f86c09;
    transition: background-color 0.2s;
}

.error {
    text-align: center;
    background-color: red;
    color: white;
}

#logo {
    width: 100px;
    background-color: #6c19e9;
    border-radius: 60px;
    padding: 6px;
}

#logoFondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.27;
}