body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-color: #e1e1e1;
}

header{
    text-align:center;
    background-color: #230686;
    color: orange;
    padding: 0.45%;
}

#description{
    text-align: center;
    margin-top: 7%;
    font-size: 26px;

}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#container {
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 460px;
  margin-bottom: 5rem;
  padding: 2rem;
  background-color: rgb(244, 245, 236);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}


label#gender{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    width: 96%;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea, select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 100%;
  font-size: 1rem;
}

input[type="submit"]{
    display: block;
    margin: 0 auto;
    width: 189px;
    height: 50px;
    border-radius: 42%;
    cursor: pointer;
    background-color: bisque;
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;

}

input[type="submit"]:hover{

    color: rgb(74, 7, 230);

}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #230686;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #4529c6;
}


footer {
  text-align: center;
  padding: 0.5rem;
  background-color: #1e1e2f;
  color: white;
}




