body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.login-container {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ddd; /* Adicionando uma borda sutil ao container */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.logo span {
  font-size: 0.5em;
  font-weight: normal;
  display: block;
  letter-spacing: 1px;
}

.welcome-text {
  margin-bottom: 25px;
}

.welcome-text h1 {
  color: #333;
  font-size: 1.5em;
  margin-bottom: 5px;
}

.welcome-text p {
  color: #777;
  font-size: 0.9em;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95em;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  width: calc(100% - 24px); 
  padding: 12px;
  border: 1px solid #ccc; 
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1em;
}

input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #777;
}

.forgot-password {
  text-align: right;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.forgot-password a {
  color: #007bff;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.login-button {
  background-color: #999; /* Cor cinza como na imagem */
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.login-button:hover {
  background-color: #777;
}

.create-account-button {
  background-color: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 14px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.create-account-button:hover {
  background-color: #e0f2ff;
}

.separator {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #ccc;
}

.separator hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid #ccc;
}

.separator span {
  padding: 0 15px;
}

.google-login {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  padding: 14px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.google-login i {
  margin-right: 10px;
  color: #db4437; /* Cor do logo do Google */
}

.google-login:hover {
  background-color: #f9f9f9;
  border-color: #bbb;
}

.help-link {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 30px;
}

.help-link a {
  color: #007bff;
  text-decoration: none;
}

.help-link a:hover {
  text-decoration: underline;
}

.security-info {
  color: #555;
  font-size: 0.8em;
  display: flex;
  align-items: center;
}

.security-info i {
  margin-right: 5px;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
