/* Importing fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600,700');

/* CSS Variables */
:root {
  --oxford-blue: #0E1C36;
  /* Oxford Blue */
  --linen: #FFFDE1;
  /* Linen */
  --ivory: #F9FBF2;
  /* Ivory */
  --light-cyan: #D7F9FF;
  /* Light Cyan */
  --jordy-blue: #AFCBFF;
  /* Jordy Blue */
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

/* Signup page main structure */
body {
  overflow-x: hidden;
}


/* Signup central form (your latest style) */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), var(--oxford-blue);
  color: white;
}

.form {
  background: var(--oxford-blue);
  max-width: 400px;
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 6px 0 rgba(215, 249, 255, 0.4);
  /* Light Cyan sombra suave */
}

.form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  margin-bottom: 15px;
}

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-container input {
  padding-right: 40px;
}

.password-container i {
  position: absolute;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--oxford-blue);
  font-size: 18px;
}

.password-container i:hover {
  color: var(--jordy-blue);
}

.form button {
  width: 100%;
  padding: 14px;
  background: var(--jordy-blue);
  border-radius: 8px;
  font-weight: bold;
  color: var(--oxford-blue);
  border: none;
  cursor: pointer;
  box-shadow: 0px 5px 30px -10px rgba(175, 203, 255, 0.4);
  /* Azul Jordy mais transparente */
}

.form button:hover {
  background: var(--light-cyan)
}

.form .message {
  margin-top: 20px;
}

.form .message a {
  color: var(--jordy-blue);
}

.form .message a:hover {
  color: var(--light-cyan);
}

/* Footer */
.footer {
  background-color: var(--oxford-blue);
  /* Usando Oxford Blue para o fundo */
  color: var(--linen);
  /* Texto claro */
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilos para o formulário */
.newsletter-form {
  display: flex;
  /* Usar flexbox para alinhar os elementos lado a lado */
  justify-content: center;
  /* Alinha os itens no centro */
  gap: 10px;
  /* Adiciona espaço entre o input e o botão */
  margin: 20px auto;
  /* Ajusta o espaço em torno do formulário */
  max-width: 500px;
  /* Limita a largura do formulário */
}

/* Estilos para o input */
.newsletter-form input {
  padding: 10px 10px;
  /* Ajuste o preenchimento para tornar o campo maior e mais fácil de digitar */
  font-size: 16px;
  /* Tamanho de fonte legível */
  border: 2px solid #ccc;
  /* Borda suave */
  border-radius: 5px;
  /* Bordas arredondadas */
  width: 70%;
  /* Ajusta a largura do input */
  box-sizing: border-box;
  /* Inclui o padding dentro da largura do input */
}

/* Estilos para o botão */
.newsletter-form button {
  padding: 10px 20px;
  /* Ajuste o tamanho do botão */
  font-size: 16px;
  /* Tamanho de fonte consistente */
  background-color: var(--light-cyan);
  /* Cor de fundo para o botão */
  color: white;
  /* Cor do texto */
  border: none;
  /* Remove a borda padrão */
  border-radius: 5px;
  /* Bordas arredondadas */
  cursor: pointer;
  /* Aponta o cursor para indicar que é clicável */
  transition: background-color 0.3s ease;
  /* Transição suave para mudança de cor */
}

/* Efeito de hover para o botão */
.newsletter-form button:hover {
  background-color: var(--jordy-blue);
  /* Altera a cor do botão ao passar o mouse */
}

/* Foco no campo de input */
.newsletter-form input:focus {
  border-color: var(--light-cyan);
  /* Altera a cor da borda quando o input é focado */
  outline: none;
  /* Remove o outline padrão */
}

/* Botão submit no footer */
.footer button[type="submit"] {
  background-color: var(--light-cyan);
  /* Cor do botão */
  color: var(--oxford-blue);
  /* Cor do texto */
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

/* Efeito de hover no botão */
.footer button[type="submit"]:hover {
  background-color: var(--jordy-blue);
  /* Cor do fundo ao passar o mouse */
  color: var(--oxford-blue);
  /* Cor do texto ao passar o mouse */
  transform: scale(1.05);
  /* Efeito de aumento do botão */
}

/* Foco no botão */
.footer button[type="submit"]:focus {
  outline: 3px solid var(--light-cyan);
  /* Adiciona uma borda ao focar */
}


.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: left;
  padding: 10px;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--linen);
  /* Logo do footer */
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--light-cyan);
}

/* Social media icons */
.footer-right {
  text-align: right;
  margin-top: 20px;
}

.footer-right p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
}

.social-icons span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.social-icons a {
  color: var(--linen);
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--light-cyan);
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}