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

body{
  background-color: #121212;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container{
    position: relative;
    height: 70%;
    width: 400px;
    border-radius: 1rem;
    background-color: #1e1e1e;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(12, 1, 30, 0.5);
}

.signup{
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    background-color: #1e1e1e;
    justify-content: space-between;
}

.header{
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #ffffff;
}


.form{
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}

.input_fields{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.email,
.password {
  padding: 1rem;
  width: 100%;
  border-radius: .5rem;
  border: 1px solid #444;
  background-color: #2a2a2a;
  color: #f1f1f1;
  font-size: 1rem;
  transition: all .1s;
  
}

.password:hover,.email:hover
{
  border: 1px solid #f0a500;
}

.email:focus, .password:focus{
  outline: none;
}

.buttons{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem; 
  
}

.register,.sign-in{
  flex: 1;
  padding: 1rem;
  background-color: #2a2a2a;
  color: #f1f1f1;
  border-radius: .5rem;
  border: 1px solid #444;
  cursor: pointer;
  transition: all .3s;

}

.register:hover,
.sign-in:hover {
  background-color:  #f0a500;
  color: white;
}



.footer{
   text-align: center;
  
}

.irons{
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .5rem;
}

.icon{
    height: 24px;
    width: auto;
    cursor: pointer;
    transition: transform .2s;
    margin-bottom: 1rem; 
    margin-top: .5rem;
    filter: invert(50%);
    
}

.icon:hover{
  transform: scale(1.1);
  filter: invert(0%);
  
}

.text {
  font-size: 0.85rem;
  color: #666;
  
}