* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: rgb(255, 212, 249);
    position: relative;
}

main {
    display: flex;
}

main > * {
    flex-basis: 100%;
}

.formholder {
    position: absolute;
    top:15vh;
    left:20vw;
    box-shadow: -10px 10px 10px gray;
}

.login_form {
    background-color: white;
    text-align: center;
}
.login_text {
    background-color: rgb(238, 131, 131);
}
.login_form_heading {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 3rem;
}
.fab {
    border: 2px solid whitesmoke;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    width: 60px; 
    cursor: pointer;
}
.fa-twitter {
    margin-left: 5px;
}

input {
    width: 70%;
    padding: 15px;
    background-color: rgb(233, 233, 233);
    font-size: 1.1rem;
    margin-top: 5px;
    margin-bottom: 5px;
    border: none;
}
form a {
    text-decoration: none;
    color: rgb(105, 105, 105);
    font-size: 1rem;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
}
input[type="submit"] {
    background-color: rgb(59, 212, 250);
    width: 30%;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}
.login_form > p {
    margin-bottom: 5px;
    color: rgb(105, 105, 105);
}

.login_text {
    background-image: linear-gradient(to right, rgb(59, 250, 240), rgb(124, 229, 255));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.login_text h2 {
    color: #fff;
    font-size: 2.5rem;
    padding: 10px;
    width: 80%;
}

.login_text p {
    color: #fff;
    padding: 10px;
    font-size: 1rem;
    width: 70%;
    line-height: 25px;
}

