@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body 
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #17161c;
}
section 
{
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  overflow: hidden;
}
section::before 
{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #17161c;
}

.signin
{
  position: absolute;
  width: 540px;
  background: #201f25;  
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 40px 32px 40px;
  border-radius: 16px;
  gap: 24px;
  border: 1px solid var(--Border-Default, #95959C40);
}
.content 
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
h2 
{
  font-size: 24px;
  color: #fff;
  margin-top: 8px;
}
h4 
{
  font-size: 16px;
  color: #95959c;
  font-weight: 400;
}
.form 
{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  
}
form 
{
  width: 100%;
}
.inputBox
{
  position: relative;
  width: 100%;
}
.inputBox input 
{
  position: relative;
  width: 100%;
  background: #363640;
  height: 64px;
  padding: 24px 16px 24px 16px;
  border-radius: 8px;
  border: 1px solid var(--Border-Default, #95959C40);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.inputBox i 
{
  position: absolute;
  left: 0;
  padding: 24px 16px;
  font-style: normal;
  color: #aaa;
  transition: 0.5s;
  pointer-events: none;
}
.inputBox input:focus ~ i,
.inputBox input:valid ~ i
{
  transform: translateY(-7.5px);
  font-size: 0.8em;
  color: transparent;
}
.links 
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.links a 
{
  color: #95959c;
  text-decoration: underline;
  margin-top: 8px;
}
.links a:nth-child(2)
{
  color: #0f0;
  font-weight: 600;
}
.inputBox input[type="submit"]
{
  padding: 0px 16px 0px 16px;
  background: #e20f19;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  height: 48px;
}
input[type="submit"]:active
{
  opacity: 0.6;
}
