/*
 _____  _  _  _             _         
|  __ \| |(_)| |           | |        
| |  \/| | _ | |__   _   _ | |_   ___ 
| | __ | || || '_ \ | | | || __| / _ \
| |_\ \| || || |_) || |_| || |_ |  __/
 \____/|_||_||_.__/  \__, | \__| \___|
                      __/ |           
                     |___/            
*/
/*----------LOGIN-----------*/
body {
    font-size: 15px;
    background-image: url("../img_maristas_fondo_index.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    font-family: Calibri;
}

/*titulo*/
.contenedor-titulo {
  text-transform: uppercase; /*mayusculas*/
  font-weight: bold;
  position: fixed;
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.contenedor-titulo h1{
  font-size: 165%; 
  color: #2f5597;
}

.contenedor-titulo h2{
    font-size: 155%;
    color: #00b050;
}

/*Subtitulo*/
.contenedor-subtitulo {
  text-transform: uppercase; /*mayusculas*/
  font-weight: bold;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.contenedor-subtitulo h3{
    font-family: serif;
    font-size: 300%;
    color: #ffc000;
}

span{
  font-size: 120%;
}

.modal-content label{
    margin-top:15px;
    margin-right:5px;
    float:right;
    color:white;
}
/* Full-width input fields */
.modal-content input[type=text], input[type=password]{
  float:right;
  width: 60%;
  padding: 7px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
   border-radius: 4px;
  box-sizing: border-box;
}
.modal-content input[type=button]{
    
  width: 55%;
  background-color: #ffd480;
  color: #014db2;
  padding: 10px;
  margin: 30px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content input[type=button]:hover {
  background-color: #ffe6b3;
}

/* The Modal (background) */
.modal {
  position:relative;; /* Stay in place */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content/Box */
.modal-content {
    position:absolute;
    bottom:0;
    right:0;
    width: 30%; /* Could be more or less, depending on screen size */
}

.container {
  float:right;
}
.container.left {
  width:60%;
}
.container.right {
  width:30%;
}


/*responsive*/
@media screen and (max-width: 1200px) {
    .modal-content {
  width: 50%; /* Could be more or less, depending on screen size */
}
}
@media screen and (max-width: 900px) {
    .modal-content {
  width: 60%; /* Could be more or less, depending on screen size */
}
}
@media screen and (max-width: 800px) {
    .modal-content {
  width: 80%; /* Could be more or less, depending on screen size */
}
}
@media screen and (max-width: 500px) {
    .modal-content {
  width: 100%; /* Could be more or less, depending on screen size */
}
}
