@font-face {
    font-family: 'Open Sans';
    src: url("../resources/css/fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html, body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    background-color: #eee;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh; 
}

.image-container {
    flex: 7; 
    background: url("https://subcontratacion.palaceresorts.com/img/second-bg.8d5446a6.png") no-repeat center center;
    background-size: cover;
}

.login-container {
    flex: 3; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    flex-direction: column;
    position: relative;
}

.centered {
    text-align: left;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #FFF;
    margin: 0 auto;
    border: none; 
    box-shadow: none; 
}

.language-object {
    display: flex;
    justify-content: flex-end;
    margin: 10px;
    width: 100%; 
    position: absolute;
    top: 10px;
    right: 10px;
}

.camposTexto {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc; 
}

.button.login {
    background-color: #005B96;
    color: white;
    border: none;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}


