body {
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.Contenedor-InicioSesion {
    width: 60em;
    margin: 10em auto;
    border-radius: 10px;
    display:flex;
    justify-content: space-between;
    overflow: hidden;
}

.Informacion-Contenedor {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
    background-image: linear-gradient(to right, rgb(255, 187, 0) , rgb(255, 255, 255));
}

.Imagen-InicioSesion {
    padding: 4rem;
    width: 50%;
    background-color:#ffffff;
    box-sizing: border-box;
}
.Titulo {
    text-transform: capitalize;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color:black;
}
.form-label {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-weight: bolder;
    color:rgb(0, 0, 0);
}

.Informacion-Contenedor > p {
    font-size: 1.25em;
    margin-top: 1.5em;
}

.Formulario-contenedor {
    height: 100%;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.input, .btn {
    width: 90%;
    height: 3.125rem;
    font-size: 1em;
}

.input {
    padding-left: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.input:hover {
    border: 2px solid var(--button-bg);
}

.btn {
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    border: none;
    border-radius: 15px;
    background-color: var(--button-bg);
    cursor: pointer;
}

.Formulario-contenedor p {
    margin: 0;
}

.span {
    color: var(--light-pink);
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .Contenedor-InicioSesion {
        width: 70%;
        margin-top: 3rem;
    }
    .Informacion-Contenedor {
        width: 100%;
        border-radius: 5px;
    }
    
    .Imagen-InicioSesion {
        display: none;
    }  
}

@media screen and (max-width: 650px) {
    .Contenedor-InicioSesion {
        width: 90%;
    }
}