* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: lowercase;
}
p{
  margin:0px
}
body {
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  box-sizing: border-box;
  width: fit-content;
  padding: 0px 20px;
  height: 26px;

   background-color: rgb(238, 238, 238);
   color: rgb(100, 100, 100);
  border: .5px solid transparent;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: 
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

button:hover {
 background-color: rgb(225, 225, 225);
 color: rgb(100, 100, 100);
  border-color: rgb(180, 180, 180);
}

.container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  height: 100%;
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start; 
  width: 65%;
  height: fit-content;
  /* padding: 20px 40px 20px; */
}
header,
footer,
.title {
  display: flex;
  width: 100%;
  font-size: xx-large;
  letter-spacing: -1.75px;

}

header{
  top: 0;
  position: sticky;
  padding-top: 20px;
  background: linear-gradient(to bottom, white, transparent)
  
}

.title{
  /* font-weight: bold; */
}

/* .title:hover{
  color:gray;
} */

header p:first-child {
  margin-right: auto; 
}

header a {
  text-decoration: none;
  color: black;
  font-size: xx-large;
  /* font-weight: bold; */
}
a{
  color: rgb(219, 12, 12);
}
a:hover {
  text-decoration: underline;
}

.content {
  padding-top: 25px;
  padding-bottom: 45px;
  width: 60%;
  /* text-align: center; */
  font-size: small;
 /* margin: 0 auto; */
  line-height: 1.6;
}

.content-register {
  width: 30%;
  text-align: left;
  font-size: small;
  line-height: 1.5;
}
.register-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px
}

footer {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  position: sticky;
  bottom:0;
  padding-bottom: 20px;
  background: linear-gradient(to top, white, transparent);
}

footer a {
  color: black;
  /* font-weight: bold; */
  text-decoration: none;
}

form{
  border: 1px solid black;
  padding: 10px;
  border-radius: 5px;
  display: grid;
  row-gap: 10px;
}

input {
  font-size: small;
  border: 1px solid black;
  padding: 2px;
}
input:focus {
  border: 1px solid gray;
}
input:hover{
  border-color:gray;
  box-shadow: inset;
}

/* REGISTRATION.HTML */

#registerForm {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.form-group label {
  margin-bottom: 0.3em;
  /* font-weight: bold; */
}

.form-group input {
  width: 100%;
  box-sizing: border-box;
  
}

.button-group {
  display: flex;
  justify-content: center; 
  margin-top: 1em;
}
/* ALERT BOX */
.alert-box {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  justify-content: center;
  align-items: center;

}

.alert-box.active {
  display: flex;
}

.alert-content {
  background: white;
  padding: 20px 40px;
  border: solid 1px gray;
  border-radius: 10px;
  text-align: center;
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: medium;
  color: black;
}

#alertButton {
  margin-top: 15px;
}

.nav{
    display: none;
}

@media (max-width: 1000px) {
  body{
    padding: 0px 10px;
  }
  .info-container {
    width: 100%;
    padding: 50px 40px 100px 50px;
    flex-grow: 1; 
  justify-content: center;
  }
.container{
  justify-content: normal;
}
.title{
justify-content: center;
  align-items: center;
}
header{
  padding-top: 12px;
}
  .content {
    text-align: left;
     margin: 0 auto;
    padding: 20px;
    width: 100%;
  }
  /* .content {
    width: 100%;
    font-size: xx-large;
  } */
  footer{
    display: none;
  }
  .closeBtn {
    display: none;
  }
  .nav{
    display: block;
  }
  .nav-toggle:hover{
    cursor: pointer;
    text-decoration: underline;
}

.nav-overlay{
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none; 
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-overlay.active {
    display: flex;
}
.nav-menu {
  display: none;
  position: fixed;
  flex-direction: column;
  inset: 0;
 justify-content: flex-start;
  padding: 12px 20px;
  z-index: 1000;
  align-items: flex-end;
  flex-direction: column;
}

.nav-menu a {
    text-align: right;
  display: block;
  margin-bottom: 10px;
}

.nav-menu.active {
  display: flex;
}
}