﻿body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.login-container {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.left-side {
    flex: 1;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),url('../../Content/images/login/fondo-contractis.jpg') no-repeat center center;
    background-size: cover;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 20px;
}

.login-box {
    border: 2px solid #78B2B4; /* borde naranja */
    padding: 10px 30px 40px 30px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    background: #fff;
}

    .login-box h1 {
        font-size: 44px;
        font-weight: bold;
        color: #78B2B4;
    }

    .login-box h1 span {
        color: #333;
        margin: 0 5px;
    }

.login-box .form-control {
    height: 45px;
    border-radius: 0;
}

.btn-login {
    width: 100%;
    background: #999;
    color: #fff;
    border: none;
    height: 45px;
    margin-bottom: 15px;
}

.btn-login:hover {
    background: #f26522;
}

.ms-login img {
    height: 40px;
}

.line-separator-title {
    border-left: 2px solid;
    height: 30px;
    color: #f26522;
    weight: 10px;
    padding: 10px 0px 10px 0px;
    margin: 8px 20px 0px 20px;
    display: flex;
    justify-content: center;
}

/* --- Responsive --- */
/*media (max-width: 991px) {
      .login-container {
        flex-direction: column;
        height: auto;
      }
      .left-side {
        height: 200px;*/ /* altura de la foto en móvil */
/*flex: none;
      }
      .right-side {
        flex: none;
        height: auto;
        padding: 40px 20px;
      }
      .login-box {
        max-width: 100%;
      }
    }*/
