* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #C3edff;
  font-family: "Palanquin Dark", sans-serif;
  font-weight: bold;
  font-size: 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
}


.logo {
  margin-top: -4rem;
  margin-bottom: 20px;
}

.qpal {
  width: 10rem; 
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: -10px;
}

.signup-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-container {
  background-color: #a9d9ff;
  border: 2px solid #2381ff;
  border-radius: 40px;
  width: 600px;
  padding: 30px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

form {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.form-left,
.form-right {
  display: flex;
  flex-direction: column;
  width: 48%;
}

label {
  font-size: 12px;
  margin-bottom: 5px;
  color: black;
  font-weight: 500;
}

input[type="text"],
input[type="email"] {
  border: 1px solid #666;
  border-radius: 15px;
  padding: 6px 12px;
  font-size: 13px;
  margin-bottom: 15px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.birthdate-inputs {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.birthdate-inputs input {
  width: 35px; 
  padding: 5px;
  text-align: center;
  font-size: 13px;
  border-radius: 15px;
  border: 1px solid #666;
}


#birthYY {
  width: 55px;
}

.sex-row{
    margin-top:-19px;
}

.sex-options {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top:5px;
  margin-bottom: 25px;
  font-size: 13px;
}


.radio-label {
  cursor: pointer;
}


.btn {
  background-color: #8776bf;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  margin-top: 5px;
  width: 110px;
}

.submit-btn {
  width: 175px;
  background-color: #8776bf;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  margin-top: 16px; 
  align-self: center ;

}

.submit-btn:hover{
    background:rgb(205, 152, 231);
}

