body {
    background-color: #f6f9fc;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
    width: 100%;
    max-width: 340px;
}

.login-container img {
    height: 150px;
    margin-bottom: 40px;
}

.login-container h2 {
    margin-bottom: 30px;
    color: #333;
}

.login-container input,
.login-container button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 24px;
    font-size: 14px;
    box-sizing: border-box;
}

.login-container a {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 24px;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    outline: none;
    background-color: white;
}


.login-container button {
    padding: 12px 90px;
    border: none;
    border-radius: 25px;
    background-color: #125786;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: auto;
    transition: 1s;

}

.login-container button:hover {
    background-color: #0a2e47;
}

.esqueci-senha {
  text-align: right;
  margin-bottom: 15px;
}

.esqueci-senha a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

/*Toast*/

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #666;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 9999;
    display: none;
    font-family: sans-serif;
  }

  .toast-body {
    position: relative;
    padding-bottom: 12px;
  }

  .toast-close {
    position: absolute;
    right: 8px;
    top: 0;
    cursor: pointer;
    font-weight: bold;
  }

  .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #e74c3c;
    animation: progress 4s linear forwards;
  }

  @keyframes progress {
    from {
      width: 100%;
    }

    to {
      width: 0%;
    }
  }

  @keyframes slideDown {
from {
  opacity: 0;
  transform: translateY(-20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

.toast.show {
animation: slideDown 0.4s ease-out;
}
