
@font-face {
    font-family: "font";
    src: url("../fonts/font-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "font";
    src: url("../fonts/font-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: "font";
    src: url("../fonts/font-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: "font";
    src: url("../fonts/font-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}


html, body{
    padding: 0;
    margin: 0;
}

body{
    overflow-y: hidden;
}

*{
    box-sizing: border-box;
    font-family: "font";
    font-weight: 400;
    text-decoration: none;
    outline: 0;
    outline: none;
}

.landing-wrapper{
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    display: flex;
    flex-wrap: wrap;
}

.landing-wrapper .left,
.landing-wrapper .right{
    height: 100%;
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.landing-wrapper .right h1{
    font-size: 1.5rem;
    font-weight: 900;
    color: #15171B;
    margin-bottom: 1.5rem;
}

.input-row .error{
    color: rgb(201, 73, 73);
    margin-bottom: 8px;
    display: block;
}

.landing-wrapper .right .input-wrapper{
    position: relative;
    border: 1px solid #E8EFF2;
    height: 50px;
    width: 100%;
    background-color: #fff;
    position: relative;
    border-radius: 8px;
    padding-inline: 45px 8px;
    margin-bottom: 1.5rem;
}

.landing-wrapper .right .input-wrapper input{
    border: 0;
    background-color: transparent !important;
    background: transparent !important;
    height: 100%;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.submit-btn{
    width: 100%;
    height: 40px;
    background-color: #15171B;
    color: #fff;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(40, 44, 46, 0.5);
    transition: all 200ms ease;
}

.submit-btn:hover{
    box-shadow: 0 10px 30px -10px rgba(40, 44, 46, 1);
}

.landing-wrapper .right .input-wrapper img{
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.right-content{
    width: 50%;
}

.landing-wrapper .left pre{
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    line-height: 2.5rem;
    color: #fff;
    z-index: 3;
    display: inline-block;
    border-left: 2px solid #fff;
    padding-left: 2rem;
}

.landing-wrapper .left img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.landing-wrapper .left::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(42, 47, 51);
    object-position: center;
    mix-blend-mode: multiply;
    z-index: 2;
}

::placeholder{
    color: #d5dcdf
}

@media only screen and (max-width: 900px) {
    .landing-wrapper .left{
        display: none;
    }

    .landing-wrapper .right{
        width: 100%;
        padding: 0 2rem;
    }

    .right-content{
        width: 100%;
    }
}