﻿@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

body {
    margin: 15px;
    margin-top: 50px;
    font-family: 'Source Sans Pro', sans-serif;
}

.login-form,
.login-form * {
    box-sizing: border-box;
    
}

.login-form {
    max-width: 450px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.login-form__logo-container {
    padding: 30px;
    background: #f8f8f8;
}

.login-form__logo {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

.login-form__content {
    padding: 30px;
    background: #f8f8f8;
}

.login-form__header {
    margin-bottom: 15px;
    text-align: center;
    color: #333333;
}

.login-form__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    background: #ffffff;
    outline: none;
    transition: border-color 0.5s;
}

    .login-form__input:focus {
        border-color: #1A70C5;
    }

    .login-form__input::placeholder {
        color: #aaaaaa;
    }

.login-form__button {
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    background: #1A70C5;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

    .login-form__button:hover {
        background: #135494;
    }

.login-form__links {
    margin-top: 15px;
    text-align: center;
}

.login-form__link {
    font-size: 0.9em;
    color: #135494;
    text-decoration: none;
}


/*Dividir en 2 horizontalmente*/

.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
}

.left {
    left: 0;
    background: #ffffff;
}

/* Control the right side */
.right {
    right: 0;
    
    background-image: url("../assets/images/fondoLoginDer.png");
}

.center-hv {
    width: 450px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .texto-home{
    color: #FFFFFF;
    position: absolute;
    left: 40%;
    top: 30%;
    -webkit-transform: translate(-30%, -50%);
    transform: translate(-30%, -50%);
  }

  .titulo-home{
    font-size: 35px;
    font-weight: bold;
  }

  .bajada-home{
    font-size: 18px;
    font-weight: bol;
  }