/* styles-index.css */
/* TAG -------*/
body {
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

input[type=text], input[type=password], button {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* CLASS -----*/
.body-index{
    display: flex;  
}

.login-container{
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

/* ID --------*/
/*@MEDIA -----*/
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
/*  [class*="col-"] {
    width: 100%;
  }*/

  .login-container{
  	height: 50%;
  	width: 80%;
    padding: 0px !important;
  }
}
