body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: rgb(0, 90, 170);
}

.error {
    color: red;
    font-weight: bold;
    background-color: white;
    padding: 2% 2% 2% 4%;
}

.bg {
    background-image: url("../images/bgimg.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.boxes {
    margin-left: 10%;
    padding-top: 8%;
}

.whitebox {
    background-color: white;
    width: 70%;
}

.bluebox {
    background-color: rgb(0, 90, 170);
    width: 70%;
}

.text {
    padding-left: 4%;
    padding-top: 4%;
    padding-bottom: 4%;
    width: 80%;
}

p {
    margin-top: 1%;
    margin-bottom: 1%;
    padding-right: 5%;
}

#welcometxt {
    font-size: 30px;   
}

#paragraphtxt{
    font-size: 1rem;
}

.regtext {
    padding-top: 4%;
    padding-left: 4%;
}

#inputtxt {
    font-size: 30px;
    color: white;
}

#inputcontainer {
    padding-top: 2.5%;
    padding-bottom: 6%;
    display: flex;
    align-items: center;
}

#input {
    height: 5%;
    width: 35%;
    font-size: 35px;
    margin-right: 2%;
}

#input::-webkit-outer-spin-button,
#input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#submit {
   height: 45px;
   width: 80px;
   background-color: white;
   color: rgb(0, 90, 170);
   border: none;
   font-size: large;
   box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
   display: block;
}

#submit:hover {
    background-color: green;
    color: white;
}

#submit:active {
    background-color: rgb(153,153,153);
}

#posimage {
    z-index: 1;
    position: absolute;
    margin-left: 45%;
    width: 500px;
    margin-top: 8%;
    padding-left: 5%;
}

.support {
    margin-left: 10%;
    margin-top: 2.5%;
}

#supporttxt {
    font-size: 20px;
}

@media only screen and (max-width: 1300px) {
    #posimage {
        display: none;
    }

    .boxes {
        margin-left: 10%;
        margin-right: 10%;
    }

    .whitebox {
        width: 100%;
    }

    .bluebox {
        width: 100%;
    }

    .text {
        width: 92%;
        padding-left: 4%;
        padding-right: 4%;
    }
}