@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  background: rgb(52, 52, 219);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

p {
  font-size: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  background: #f6f8ff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn a{
  text-decoration: none;
  background-color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  gap: 8px;
  height: fit-content;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}

.btn a:hover{
  background-color: #818cf8;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

#header p {
  font-weight: 500;
  color: #272727;
  position: relative;
  
}

#header p::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  border-radius: 30px;
  background-color: #6366f1;
  left: 0;
  bottom: 0;
}

.selector{
  display: grid;
  font-size: 12px;
  color: #404044;
  font-weight: 500;
}

input, select {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

input:focus{
  outline: none;
}

input:focus-within{
  outline: 2px solid #6366f1;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  color: #000;
}

.form{
  display: grid;
}

.genero {
  grid-column: span 2;
}

ul{
  margin-left: 10px;
}


