body {
    height: 100%;
    margin: 0;
    background-image: url('../images/florfondo.fw.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
}

.container {
    display: flex;
    height: 100%;
}

.login-section {
    width: 50%;
    background-color: #FBF7F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.3);
}

.login-box {
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    color: #a21a5c;
    border-color: #a21a5c;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #a21a5c;
    color: #ffffff;
}

.error {
    color: red;
    margin-bottom: 10px;
}

.image-section {
    width: 50%;
    background-color: #F8F2F0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 2px 0px 10px rgba(0,0,0,0.3);
}

.image-section img {
    max-width: 80%;
    max-height: 80%;
}

@media (max-width: 768px) {
    .image-section {
        display: none;
    }

    .login-section {
        width: 100%;
    }
}

.navbar {
    background-color: rgba(128, 128, 128, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 10px 20px;
    z-index: 1;
}

.user-box {
    z-index: 2;
}

.rojo {
    width: 100%;
    padding: 10px;
    background-color: #aa182c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
.rojo:hover {
    background-color: #8a0f2b;
}

.azul {
    width: 66%;
    padding: 15px;
    background-color: #00bed6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
.azul:hover {
    background-color: #0099b0;
}

.cafe {
    width: 66%;
    padding: 15px;
    background-color: #d0b787;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
.cafe:hover {
    background-color: #b09a6a;
}