@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&display=swap');

body {
    font-family: 'Montserrat Alternates', sans-serif;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    line-height: 1.8;
    color: #333;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.6)), url('/static/img/fondo_1.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px #ffffffb0;
    animation: slideInLeft 1s ease-out forwards;
}

.btn-register {
    font-size: 1.8rem;
    padding: 16px 28px;
    color: #ffffff;
    text-decoration: none;
    background-color: #ff5100;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: slideInLeft 1s ease-out forwards;
}

.btn-register:hover {
    background-color: #ffe600;
    color: rgb(0, 0, 0);
    transform: scale(1.1);
}

.registro {
    padding: 20px;
}

.uno img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.registro h1 {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    animation: slideInLeft 1s ease-out forwards;
}

.registro p {
    font-size: 1.6rem;
    color: white;
    animation: slideInLeft 1s ease-out forwards;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
    background: #753300;
    color: white;
    text-align: center;
}

.caja {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
}

.caja_logos img {
    width: 50px;
    height: 50px;
    margin: 5px;
}

.text p {
    font-size: 18px;
}

.icons img {
    width: 26px;
    height: 26px;
    transition: transform 0.3s;
}

.icons img:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .registro h1 {
        font-size: 2.5rem;
    }

    .registro p {
        font-size: 1.5rem;
    }

    .btn-register {
        font-size: 1.6rem;
        padding: 14px 26px;
    }
    
    .logo {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .registro h1 {
        font-size: 2.2rem;
    }

    .registro p {
        font-size: 1.4rem;
    }

    .btn-register {
        font-size: 1.5rem;
        padding: 12px 24px;
    }
    
    .logo {
        height: 220px;
        width: 220px;
    }
}
