body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #ed0000;
}

.sesion{
    width: 900px;
    height: 450px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.two_column_img1{
    width: 100%;
}

.two_column2{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffff;
    align-items: center;
    height: 100%;
}

.login-form {
    display: flex;
    width: 350px;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form form{
    width: 95%;
}

.login-form h1{
    margin-bottom: 15px;
}

.form.group{
    margin-bottom: 15px;
    width: 100%;
}

.form-group label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input{
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button{
    background-color: #ed0000;
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
    cursor:pointer;
    margin-top: 10px;
    width: 100%;
}

button:hover{
    background-color: #c70000;
    padding: 10px 25px;
    transition: 0.2s;
}

@media (max-width: 905px){
    .sesion{
        width: 100%;
        height: 450px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .two_column_img1{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 750px){
    .sesion{
        width: 100%;
        height: 100vh;
        position: absolute;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
    }

    .two_column1{
        display: none;
    }

    .two_column2{
        
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffff;
        align-items: center;
        margin: auto;
        height: auto;
        padding: 20px;
    }

}

@media (max-width: 390px){
    .sesion{
        width: 100%;
        height: 100vh;
        position: absolute;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
    }

    .two_column2{
        
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffff;
        align-items: center;
        margin: auto;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .login-form {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        padding: 5px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .login-form form{
        width: 100%;
    }
}