
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg:rgb(11, 19, 38);
    --border-color:rgba(255, 255, 255, 0.08);
    --monoFonts: "JetBrains Mono";
}
body{
    background: var(--bg);
    font-family: "Poppins", sans-serif;
}
form{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 7%;
    margin-left: 30%;
    height: 450px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
#email, #password, #name{
    width: 80%;
    margin-bottom: 33px;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: 0;
    background: var(--bg);
    color: #6ba5af;
}
#password:focus{
    border-color:rgba(0,221,221,0.4);
}
#email:focus{
    border-color:rgba(0,221,221,0.4);
}
input::placeholder{
    font-size: 14px;
}
form h1{
    color: #fff;
    margin-bottom: 30px;
    font-family: var(--monoFonts);
    font-weight: 400;
    font-size: 43px;
}

#submit{
    outline: 0;
    border: 0;
    font-size: 19px;
    font-weight: 400;
    background: #24ab81;
    color: #fff;
    font-family: "Poppins", sans-serif;
    padding: 7px 10px;
    width: 80%;
}

.back{
    padding: 10px;
}
.back a{
    text-decoration: none;
    color: #6ba5af;
    font-size: 12px;
    text-decoration: underline;
    font-weight: 500;
}
