/* Importa fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

/* Formulário ocupa 50% */
.form-card {
  flex: 1 1 300px;
  max-width: 500px;
}


/* Responsividade: empilhar em telas pequenas */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }

}

body {
    background: linear-gradient(to bottom right, #ff6600fb, #eea858);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-card {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 350px;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
  }

  .logo {
    max-width: 100px;
    height: auto;
    display:flex;
    margin-left: auto;
    margin-right: auto;
  }
  

  .form-card h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bolder;
    color: #f14602;
  }

  .btn-gradient {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #ff7301, #f7c05b);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    margin-top: 15px;
    width: 300px;
    height: fit-content;
  }

  .btn-gradient:hover {
    scale: 1.05;
    transition: 0.3s
  
  }

  .input-line {
    border: none;
    border-bottom: 2px solid #ffa500;
    width: 100%;
    text-align: center;
    padding: 8px;
  }
  .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  