* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #242458, #3d3d7e);
  background-size: contain;
  background-position: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  width: 420px;
  background: rgba(255, 255, 255, 0.1); 
  border: 2px solid rgba(255, 255, 255, 0.3); 
  border-radius: 10px;
  padding: 5px 40px;
  position: relative;
  backdrop-filter: blur(20px); 
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

h1 {
  font-size: 36px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
}


.input-container {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-container img {
  position: absolute;
  right: 24px;
  top: 20%;
  margin-top: 5px;
  color: rgb(255, 255, 255);
  display: block;
  
}

.input-container a {
  font-size: 16px;
  margin-top: 5px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: block;
}

.input-container a:hover {
  text-decoration: underline;
}

.input-container input,
.input-container select {
  width: 100%;
  height: 50px; 
  background: transparent;
  outline: none;
  border: 2px solid rgb(251, 250, 250);
  border-radius: 10px;
  font-size: 16px;
  color: rgb(239, 236, 236);
  padding: 0 45px 0 20px; 
}

.input-container input::placeholder {
  line-height: 50px; 
  color: rgb(242, 237, 237);
}

.input-container select::placeholder {
  color: rgb(242, 237, 237);
  
}

.input-container select option {
  background-color: #29387f;
  color: rgb(255, 255, 255);
}

.input-container select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px !important;
}

.input-container select::after {
  content: '▼';
}

.input-container.has-select::after{
  content: '▼';
  position: absolute;
  right: 18px;   
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
  pointer-events: none;
}

.submit-button {
  width: 250px;
  height: 50px;
  background-color: #fff;
  border: none;
  border-radius: 15px;
  color: black;
  font-weight: 500;
  margin-top: 24px;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}

.submit-button:hover {
  background-color: #29387f;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.Termos{
  display: flex;
  padding: 10px;
}
.Termos input{
  height: 30px;
  width: 30px;
}