 body {
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      background-image: url("assets/background/terramar4.png");
      background-position: center;  
      background-repeat: no-repeat;  
      height: 100vh;                
      margin: 0;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .container {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      width: 100%;
      max-width: 1400px;
      padding: 20px;
    }
    .information-container{
      width: 540px;
      border-left: 3px solid white;
      padding-left: 4rem;
    }
    .information-container h1{
      color: white;
      font-size: 40px;
      margin-bottom: 0;
    }
    .information-container p{
      color: white;
      font-size: 17px;
      margin-top: 5px;
    }
    .information-container p:nth-of-type(2){
      color: #ce4926;
      font-size: 15px;
      font: bolder;
      margin-top: 2rem;
    }
    .login-container {
      width: 500px;
      display: flex;
      flex-direction: column;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      color: #444241;
    }
    .login-title{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .login-title img{
      width: 150px;
      height: 30px;
    }
    .login-input{
      display: flex;
      flex-direction: column;
    }
    .login-input input{
      padding: 10px;
      margin-top: 10px;
      border: solid 1px #8b8b8b;
      border-radius: 10px;
    }
    .login-input button{
      padding: 10px;
      background: white;
      color: #ce4926;
      margin-top: 15px;
      border: 1px solid;
      cursor: pointer;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    .login-input button:hover {
      background: #ce4926;
      color: white;
    }

    /* --- BOTÃO MICROSOFT --- */

.ms-login-btn {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background: #ffffff;
  border: 2px solid #d1d1d1;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.ms-login-btn:hover {
  background: #f1f1f1;
  border-color: #bbbbbb;
}

.ms-logo {
  width: 22px;
  height: 22px;
}
