@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

h1 .logo {
  width: 35px;
  height: 35px;
  object-fit: contain; 
  display: inline-block;
}

  

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, rgb(60, 4, 99)); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}
  

.container {
    background: #26883a;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
  

h1 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #fff;
}
  

form {
    display: flex;
    flex-direction: column;
}
  

input {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
}
  

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.btn_saber {
    padding: 15px;
    border-radius: 25px;
    border: 2px solid #b114bc;
    background-color: #fff;
    color: #b114bc;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn_saber:hover {
    background-color: #d6b3ff; 
    color: #3a0050; 
    border-color: #c299ff;
}

.btn_cadastro {
    padding: 15px;
    border-radius: 25px;
    border: 2px solid #b114bc;
    background-color: #fff;
    color: #b114bc;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn_cadastro:hover {
    background-color: #d6b3ff; 
    color: #3a0050;
    border-color: #c299ff;
}

p {
    margin-top: 15px;
    color: #fff;
}
  
p a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}
  
p a:hover {
    text-decoration: underline;
}
@media (max-width: 760px) {
    header, h1 { width: 100%; }
    .logo { display: inline-flex; align-items: center; gap: 8px; }
    .logo img { width: 30px; height: 30px; }
    .container { padding: 20px; }
}
  