body {
    font-family: 'Poppins', sans-serif;
    background: #1c1c35f0;
    color: #e0e0e0;
    margin: 0px;
    padding: 18px;
    /* display: flex
; */
    min-height: 100vh;
}

.logo {
    width: auto;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}        
        
        
        
        .container {
            /* background: #fff; */
            /* padding: 20px; */
            /* border-radius: 8px; */
            /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
            width: 300px;
        }

        h2 {
            /* text-align: center; */
            color: #ffffff;
            font-size: 40px;
        }
        
        
        
        

        label {
            /* font-weight: bold; */
            display: block;
            margin-top: 19px;
            margin-left: 16px;
        }

        input {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 20px;
        }

        button {
            background-color: #ae8b50;
            color: white;
            padding: 10px;
            border: none;
            width: 76%;
            margin-top: 47px;
            margin-left: 27px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 24px;
        }

        button:hover {
            background-color: #b73505;
        }

        strong {
        color:white;
        font-size: 20px;

        }


        .video-container {
            display: flex;
            justify-content: center;
            align-items: center;
            /*width: 100%;*/
            max-width: 100%;
            padding: 10px;
        }
        
        .video {
            width: 100%;
            max-width: 528px; /* Tamaño máximo en pantallas grandes */
            height: auto;
            border-radius: 10px;
        }
        
        @media screen and (max-width: 600px) {
            .video {
            width: 95%;
            height: auto;
            }
        }


