.content {
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
    grid-column: 2/3;
    background-color: rgba(0,0,0,0.5);
    font-family: 'L5';
    color: #FCBE20;
    font-size: 32px;
    min-height: 329px;
    grid-template-columns: 1fr;
}

.logintitle {
    margin-top: 20px;
    text-align: center;
    font-size: 35px;
    line-height: 42px;
    color: #30B579;
}

.loginreg {
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    grid-template-areas: "reg spacer login";
    padding: 20px;
}
.loginsec {
    grid-area: login;
}
.regsec {
    grid-area: reg;
}
.regsec > p:first-child {
    margin-bottom: 10px;
}
.loginsec > p:first-child {
    margin-bottom: 10px;
}
.verticaldivider {
    grid-area: spacer;
    width: 100%;
    background-color: #FCBE20;
}
.content label {
    float: left;
    display:block;
    font-size: 14px;
    margin-bottom: 5px;
}
.content input {
    clear: both;
    display:block;
    padding: 0 8px;
    border-radius: 3px;
    text-align: left;
    border-width: 1px;
    border-color: rgb(255, 193, 33);
    transition: all .3s;
    font-family: 'L5';
    font-size: 14px;
    height: 35px;
    width: 300px;
    margin-bottom:20px;
}
.loginbutton {
    display: block;
    border-radius: 3px;
    border-width: 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,.25);
    transition: all .3s;
    font-size: 14px;
    height: 46px;
    color: black;
    background-color: #FCBE20;
    margin-bottom: 20px;
    width: 170px;
    font-family: 'L5';
    font-size: 18px;
    cursor: pointer;
}
.loginbutton:hover {
    background-color: #DD9C1A;
}
.loginerror {
    justify-self: center;
    width: 80%;
    display: block;
    margin: 10px 0px;
    color: #AD4C4C;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
}

.content summary {
    cursor: pointer;
    color: #B2B2B2;
    font-size:14px;
    margin-bottom: 20px;
}

.required {
    font-size: 14px;
    text-align: right;
    color: #7F7F7F;
}
#logininput {
    margin-bottom: 0px;
}
#logininputcheck {
    width: 10px;
    float: left;
}
#wantsemail {
    line-height: 36px;
    margin-left: 10px;
}
#whyemail {
    width: 300px;
}
#whyemail p:first-child {
    margin-top: 30px;
    font-size: 18px;
    color: #F4B41D;
    line-height: 22px;
}
#whyemail p {
    font-size: 14px;
    font-weight: 500;
    color: #B2B2B2;
}
@media screen and (max-width: 1000px)
{
    .logintitle {
        font-size: 29px;
        line-height: 35px;
    }
}

@media screen and (max-width: 768px)
{
    .logintitle {
        font-size: 24px;
    }
    .loginreg {
        grid-template-columns: 1fr;
        grid-template-rows: auto 24px auto;
        grid-template-areas:
         "login"
         "spacer"
         "reg";
    }
    .verticaldivider {
        height: 4px;
    }
}

@media screen and (max-width: 480px)
{
    .content {
        grid-column: 1/-1;
    }
    .logintitle {
        font-size: 18px;
    }
    .loginerror {
        font-size: 18px;
    }
}