/* colores */
:root {
    --blue-color: #275171;
    --black-color: #4E5A62;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: #F8FAFC;
    width: 100%;
    height: 100%;
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page_ct {
    display: table;
    width: 100%;
    min-height: 100%;
    /* background: rgb(1, 23, 46);
    background: linear-gradient(0deg, rgba(2, 32, 65, 0.975) 0%,
            rgba(0, 0, 0, 0.779) 100%); */
}

.page_ct_td {
    display: table-cell;
    padding: 0;
}

.cell_left {
    width: calc(100% - 500px);
    background-image: url('http://officedata.asinfagency.es/images/soft-office-data.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: .6; */
}

h2 {
    font-family: "Roboto";
    font-size: 64px;
    color: #fff;
    display: inline;
    padding: 0;
}

.cell_right {
    width: 500px;
    background-color: #F8FAFC;
    vertical-align: middle;
    text-align: center;
    padding: 50px;
    position: relative;
}

.formlogin {
    text-align: center;
    width: 400px;
    display: inline-block;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.formlogin h4,
.formlogin h6 {
    font-family: "Roboto";
    display: block;
    padding: 0;
    margin: 5px 0;
    text-align: left;
}

.formlogin h4 {
    color: #161616;
    font-size: 20px;
}

.formlogin h6 {
    color: #555555;
    font-size: 14px;
    font-weight: normal;
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
}

.logolab {
    max-width: 200px;
    margin-bottom: 30px;
}

.firstrow {
    margin-top: 20px;
}

.grouprow {
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.grouprow label {
    display: block;
    margin-bottom: 5px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: normal;
}

.field_form {
    border: 1px solid var(--black-color);
    border-radius: 2px;
    background-color: #fff;
    overflow: hidden;
}

.field_form i {
    position: absolute;
    margin-top: 15px;
    margin-left: 10px;
    color: var(--black-color);
    font-size: 16px;
}
.field_form:hover  {
     border: 1px solid var(--blue-color);
}
.field_form:hover i {
    color: var(--blue-color);
}

.field_form input {
    outline: none;
    border: none;
    padding: 15px;
    padding-left: 40px;
    font-family: "Roboto", serif;
    font-size: 14px;
    color: #000;
    width: calc(100% - 55px);
}
.SwalBottom {
    background-color: var(--blue-color);
    border-radius: 2px;
    font-family: 'Roboto';
}
.SwalBottom:hover{
    background-color: #133147
}

button {
    width: 100%;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: none !important;
    cursor: pointer;
}

.m_login {
    background-color: var(--blue-color);
}

.m_login:hover {
    background-color: #133147;
}

.m_signup {
    background-color: #1CB94E;
}

.m_signup:hover {
    background-color: #108d38;
}

.notaccount {
    margin: 20px 0;
    display: block;
}




form span {
    color: var(--black-color);
    font-family: "roboto", "Helvetica";
    font-size: 12px;
}

form label {
    font-weight: 600;
}

.content_mesagges {
    position: absolute;
    top: 20px;
    z-index: 2;
    width: 100%;
    left: 0;
    text-align: center;
}

.error_mesagges,
.ok_mesagges {
    padding: 10px;
    text-align: center;
    color: #fff;
    font-family: "roboto", "Helvetica";
    font-size: 13px;
    border-radius: 2px;
    margin: 0 30px;
    display: inline-block;
}

.error_mesagges {
    background-color: #DA045D;
}

.ok_mesagges {
    background-color: #00A100;
}

/* :disabled controls */
input:disabled {
    color: #AAA;
}

button:disabled {
    background-color: #253542;
    cursor: progress;
}

.copirigth {
    position: absolute;
    text-align: center;
    bottom: 0;
    font-family: "arial", serif;
    font-size: 12px;
    color: #4E5151;
    width: calc(100% - 20px);
    padding: 10px;
    left: 0;
}


@media(max-width:1200px) {

    .cell_left,
    .cell_right {
        width: 50%;
    }
}

@media(max-width:900px) {
    .cell_right {
        padding: 40px;
    }

    .formlogin {
        width: 100%;
    }
}

@media(max-width:800px) {
    .cell_left {
        display: none;
        width: 0px;
    }

    .cell_right {
        width: 100%;
        padding: 50px;
    }

    .formlogin {
        width: 400px;
    }
}

@media(max-width:510px) {
    .cell_right {
        width: 100%;
        padding: 30px;
    }

    .formlogin {
        width: 100%;
    }
}