﻿.Formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    align-items: center;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255);
    position: relative;
    width: 25%;
    height: 80%;
}

.LogoDTVX {
    max-width: 200px;
    max-height: 200PX;
}

.ContenedorDeInputs {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 10px;
    width: 100%;
}
.ContenedorDeImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.GrupoInput {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

    .GrupoInput label {
        color: gray;
    }

    .GrupoInput input {
        width: 88%;
        background: white;
        padding: 15px 20px;
        border: solid 1px #d7d7d7;
        border-radius: 15px;
    }


        .GrupoInput input:focus {
            border: 2px solid black;
        }

    .GrupoInput button {
        color: white;
        border: none;
        background-color: #62B50A;
        border-radius: 15px;
        padding: 15px 20px;
        margin-top: 5px;
    }

        .GrupoInput button:hover {
            background-color: rgba(87, 158, 0, 1);
            transform: scale(1.03);
        }



/**Media querys**/
/* Móviles */
@media (max-width: 480px) {
    .Formulario {
       
        width: 95%;
    }

}

/* Tabletas */
@media (min-width: 481px) and (max-width: 768px) {
    .Formulario {
        width: 50%;
    }
}

/* Laptops y pantallas pequeñas */
@media (min-width: 769px) and (max-width: 1024px) {
    .Formulario {
        width: 50%;
    }
}

/* Pantallas grandes y ordenadores de escritorio */
@media (min-width: 1025px) and (max-width: 1200px) {
}

/* Pantallas extra grandes y televisores */
@media (min-width: 1201px) and (max-width: 1500px) {
}

@media (min-width: 1500px) {
}

