* {
    margin: 0px;
    padding: 0px;
    color: white;
}

body {
    background-color: rgb(6, 15, 46);
}

main {
    margin: 0px auto;
    height: 100vh;
    width: 70vw;
    display: flex;
}

div#bgContainer {
    width: 40%;
    height: 100%;
    box-sizing: border-box;
    background-image: url("BGImg.png");
    background-position: center;
    background-size: cover;
}

div#heading {
    display: flex;
    justify-content: center;
    background-color: rgba(31, 31, 31, 0.484);
    align-items: center;
    position: relative;
    top: 45px;
}

#logo {
    filter: invert(1);
    width: 200%;
}

#company-name {
    font-family: Lobster Two;
    color: white;
    font-size: 80px;
    margin-left: 50px;
}

div#form {
    width: 60%;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 1.25em;
    margin-left: 5%;
}

p#ad {
    margin-top: 10%;
}

p#tagLine {
    margin-top: 20px;
    margin-bottom: 30px;
}

fieldset {
    border: none;
}

#sign-up {
    width: 80%;
    margin-top: 5%;
    margin-left: 5%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.formRow {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.formCell {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

input {
    margin-top: 10px;
    width: 125%;
    height: 25px;
    border-radius: 5px;
    color: black;
    font-size: 15px;
    font-weight: 400;
}

#createBtn {
    background-color: rgb(45, 45, 228);
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: large;
    font-weight: 600;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#createBtn:hover {
    background-color: rgb(82, 82, 230);
}

#createBtn:active {
    background-color: rgb(45, 45, 228);
}

#login {
    margin-top: 20px;
}

a {
    color: aqua;
    text-decoration: none;
}

input:invalid:focus {
    border: solid 1px red;
    box-shadow: 2px 2px 15px 0px red;
}

input:valid:focus {
    border: solid  green;
    box-shadow: 2px 2px 15px 0px green;
}