/* this is the CSS file for the sign up page, again its pretty much the same */
body {
  background: linear-gradient(45deg, #000000, #2c003e);
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}



.register-form{
  background: #1e1e1e;
  max-width: 400px;
  width: 90%;
  margin: auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.register-form input{
  width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #555;
border-radius: 4px;
font-size: 1rem;
background: #333;
color: #e0e0e0;
box-sizing: border-box;
}

header {
position: fixed; 
top: 0;
width: 100%; 
padding: 10px;
display: flex;
justify-content: flex-end;
}


.user_name {
display: flex;
gap: 1rem; 
}

.user_creds{
display: flex;
flex-direction: column; 
}

.name input {
width: 50%;
padding: 0.75rem;
border: 1px solid #555;
border-radius: 4px;
font-size: 1rem;
background: #333;
color: #e0e0e0;
box-sizing: border-box;
}

.user_creds input, user_name{
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #555;
border-radius: 4px;
font-size: 1rem;
background: #333;
color: #e0e0e0;
box-sizing: border-box;
}


#dark-light {
background-color: transparent; 
border: none; 
color: black; 
font-size: 50px; 
cursor: pointer;
}

#signup_button {
width: 100%;
padding: 0.70rem;
font-size: 1rem;
border: none;
border-radius: 4px;
background: #6200ee;
color: #fff;
cursor: pointer;
margin-bottom: 1rem;
}

.user_gender{
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #555;
border-radius: 4px;
font-size: 1rem;
background: #333;
color: #e0e0e0;
box-sizing: border-box;
}