* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: arial;
    background-color: #ddddd946;
  }
  
  .form-login {
    width: 400px;
    height: 340px;
    background: #feffff;
    margin: auto;
    margin-top: 180px;
    padding: 20px 30px;
    color: rgb(7, 6, 6);
  }

  .logo-olivos {
    height: 140px;
    width: 200px;
  }

  .cont-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .form-login h5 {
    margin: 0;
    text-align: center;
    height: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid;
    font-size: 20px;
  }
  
  .controls {
    width: 100%;
    border: 1px solid #0a0a0a;
    margin-bottom: 15px;
    padding: 11px 10px;
    background: #f5f2f2;
    font-size: 14px;
    font-weight: bold;
  }
  
  .buttons {
    width: 100%;
    height: 40px;
    background: #34851b;
    border: none;
    color: white;
    margin-bottom: 16px;
    cursor: pointer;
  }

  .buttons:hover {
    background-color: #278b09;
  }
  
  .form-login p{
    height: 40px;
    text-align: center;
    border-bottom: 1px solid;
  }
  
  .form-login a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .form-login a:hover {
    text-decoration: underline;
  }