@font-face{
  font-family: "darklinos";
  src:
    url("./fonts/DARKLINOSRegular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body{
  height: 100vh;
  display: flex;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: sans-serif;
}

.left{

  background: url("./imgs/anvil.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  color: white;
}

.logoName{
  display: flex;
  align-items: center;
  font-family: darklinos;
  margin-top: 200px;
  padding: 20px;
  background-color: rgb(0 0 0  / 30%);
  font-size: 20px;
}

.logo{
  width: 150px;
}

footer > a{
  color: white;
}

a:hover{
  text-decoration: none;
}

footer{
  margin-top: auto;
  margin-bottom: 30px;
}

.right{
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  padding-left: 80px;
  padding-right: 300px;
}

fieldset{
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 60px;

  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  margin-bottom: 40px;
  
  margin-left: -80px;
  margin-right: -300px;
}

label{
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 16px;
}

input{
  width: 30ch;
  height: 2em;
  border: 1px solid gainsboro;
  margin-top: 5px;
  font-size: inherit;
  border-radius: 8px;
}

h3{
  font-size: 26px;
}

h3 + h3{
  margin-bottom: 50px;
}

button[type="submit"]{
  background-color: #d8451d;
  color: white; 
  font-size: 16px;
  padding: 1em 2em;
  border-radius: 8px;
  border: none;
}

button[type="submit"]:hover{
  box-shadow: 0 0 20px rgb(0 0 0 / 0.3);
  cursor: pointer;
  background-color: #b93f1d;
}

input[type="password"]:invalid{
  border-color: red;
}

input[type="text"]:focus{
  outline: none;
  border: 1px solid blue;
  box-shadow: 0 0 7px rgb(0 0 0 / 0.2);
}