@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

.imagen_izquierda {
    /* position: relative; */
    float: right;
    margin-top: 7px;
    width: 110px;
    height: 110px;
    margin-left: 10px;
    padding: 5px;
}

.imagen_derecha {
    /*position: relative;*/
    float: right;
    margin-top: 7px;
    width: 200px;
    height: 70px;
    margin-right: 10px;
}


/*
body {
    color: #1A202C;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.link {
    color: #0603ac;
    text-decoration: none;
}

    .link:hover {
        text-decoration: underline;
    }
*/
.login-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    height: 80%;
    margin-top: 0px;
}

    .login-wrapper .box-col {
        width: 50%;
        height: 100%;
        position: relative;
        text-align: center;
    }


        .login-wrapper .box-col img {
            /* width: 100%;
            height: 100%;*/
            width: 400px !important;
            height: 145px !important;
            object-fit: cover;
        }

    .login-wrapper .box-form {
        padding: 20px;
        display: flex;
        height: 100%;
        align-items: center;
        position: relative;
    }

/*   .login-wrapper .inner {
        max-width: 350px;
        margin: auto;
    }*/


.formlogin {
    background: #fff;
    border-radius: 6px;
    border-style: outset;
    padding: 20px 60px 20px 60px;
    margin: 0px 20px 0px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}





.form-head .title {
    font-size: 30px;
    font-weight: bold;
    color: #1A202C;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group .label-text {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .form-group .form-control {
        /*  width: 100%;*/
        height: 50px;
        padding: 7px 10px;
        outline: none;
        border: none;
        border-bottom: 1px solid #3d065d;
    }

        .form-group .form-control:focus {
            border-bottom: 2px solid #3d065d;
        }

.form-button {
    display: flex;
    justify-content: space-between;
}


.actions {
    margin-top: 20px;
}

    .actions .btn-ingresar {
        width: 150px;
        padding: 15px 20px;
        font-size: 14px;
        border: 0px;
        background-color: #fff;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 2px;
        background-color: #3d065d;
        color: #fff;
        cursor: pointer;
    }


        .actions .btn-ingresar:hover {
            background-color: #ffffff;
            color: #3d065d;
            cursor: pointer;
            border: #3d065d 1px solid;
            transition: .5s all ease;
        }


    .actions .btn-registro {
        width: 150px;
        padding: 15px 20px;
        font-size: 14px;
        border: 0px;
        background-color: #fff;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 2px;
        background-color: #0603ac;
        cursor: pointer;
        color: #fff;
    }


        .actions .btn-registro:hover {
            background-color: #ffffff;
            color: #0603ac;
            cursor: pointer;
            border: #0603ac 1px solid;
            transition: .5s all ease;
        }


.form-bottom {
    display: flex;
    justify-content: space-between;
}

/* responsiveness */

@media(max-width:768px) {
    .login-wrapper .box-image {
        display: none;
    }

    .login-wrapper .box-col {
        width: 100%;
    }
}

@media(max-width:530px) {
    .login-wrapper {
        padding: 20px;
    }

        .login-wrapper .box-form {
            height: auto;
        }

    .bottom-register {
        margin: 20px 0px;
        position: relative;
    }
}
