* {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
body,
html {
  overflow: hidden;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5;
}
/* classes */
.signed {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: Roboto;
  color: #a7a7a7;
}
.signout {
  padding: 25px;
  margin: 0 10px;
  font-family: Ropa Sans;
  font-size: 23px;
  cursor: pointer;
  color: grey;
  background-color: rgba(255, 255, 255, 0.603);
  border-radius: 15px;
}
.body {
  display: none;
  margin: 0 400px 0 0;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0px -3px 15px rgba(0, 0, 0, 0.25);
  position: fixed;
  z-index: 1;
  top: 0;
}
.logo img {
  padding: 0 25px 0 0;
}
.logo {
  font-family: Ropa Sans;
  font-size: 20px;
  font-weight: 650;
}
.form {
  position: absolute;
  background-color: white;
  padding: 50px;
  width: 350px;
  height: 200px;
  border-radius: 5px;
  top: 20%;
  font-family: Ropa Sans;
  font-size: 20px;
}
.input {
  display: flex;
  flex-direction: column;
  padding: 0 0 30px 0;
  color: #504f4f;
  line-height: 20px;
  line-height: 45px;
}
input {
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  height: 20px;
  transition: border 0.5s;
}
input:focus {
  /* animation: flicker 1s infinite; */
  border-bottom: 2px solid #555;
}
.logBtn {
  position: absolute;
  width: 100px;
  height: 49px;
  background-color: #078080;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s ease;
  left: 40%;
  bottom: -7%;
}
.log {
  position: absolute;
  font-family: Ropa Sans;
  right: 30px;
  font-size: 20px;
  padding: 15px 0 0 0;
  color: white;
}
.logBtn:hover {
  background-color: #0aadad;
}
.form p {
  position: absolute;
  bottom: -25%;
  right: 90px;
  color: #a7a7a7;
}
.signBtn {
  padding: 9px 25px 0 15px;
  font-family: Ropa Sans;
  font-size: 23px;
  cursor: pointer;
  color: black;
}
/* keyframes */
@keyframes flicker {
  0% {
    border-bottom: 2px solid #ccc;
  }
  50% {
    border-bottom: 2px solid #555;
  }
  100% {
    border-bottom: 2px solid #ccc;
  }
}
/* Fonts */
@font-face {
  font-family: Quotes;
  src: url(./assets/font/Crimson_Pro/CrimsonPro-Italic-VariableFont_wght.ttf);
  font-style: italic;
}
@font-face {
  font-family: Quotes;
  src: url(./assets/font/Crimson_Pro/CrimsonPro-VariableFont_wght.ttf);
  font-style: normal;
}
@font-face {
  font-family: DM Sans;
  src: url(./assets/font/DM_Sans/DMSans-Regular.ttf);
}
@font-face {
  font-family: DM Sans;
  src: url(./assets/font/DM_Sans/DMSans-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: J Sans;
  src: url(./assets/font/Josefin_Sans/JosefinSans-VariableFont_wght.ttf);
}
@font-face {
  font-family: Ropa Sans;
  src: url(./assets/font/Ropa_Sans/RopaSans-Regular.ttf);
}
@font-face {
  font-family: Roboto;
  src: url(./assets/font/Roboto-3/Roboto-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: Roboto;
  src: url(./assets/font/Roboto-3/Roboto-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: Habibi;
  src: url(./assets/font/Habibi/Habibi-Regular.ttf);
}
