﻿body {
    margin: 0;
    background-image: url("../img/fondo-log.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: 'Bebas Neue', sans-serif;
    color: #ffcc00;
}
.login-box {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px); 
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

    .login-box h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

#imagenes1, #imagenes2, #imagenes3 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

    #imagenes1:hover, #imagenes2:hover, #imagenes3:hover {
        transform: scale(1.1);
    }

.image-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}