* {
    margin: 0;
}

html, body {
    height: 100%;
}

#container{
    position: absolute;
    height: 100%;
    width: 100%;
    min-height: 500px;
    background: rgb(50,50,50);
}

#inner_container {
    position: absolute;
    width: 400px;
    left: 50%;
    margin-left: -200px;
    top: 50%;
    margin-top: -220px;
}

#nitery_logo {
    position: relative;
    width: 150px;
    height: 50px;
    margin-bottom: 5px;
}

#nitery_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#form_outline {
    width: calc(100% - 2px - 40px;);
    background: #fff;
    padding: 20px;
    border: 1px rgb(180,180,180) solid;
    border-radius: 5px;
}

#form_title {
    font-weight: 500;
    font-size: 25px;
    padding-bottom: 10px;
    color: #7366e5;
}

.input_style {
    text-decoration: none;
    position: relative;
    height: 20px;
    padding: 10px;
    width: calc(100% - 21px);
    margin-bottom: 10px;
    border: none;
    border: 1px rgb(180,180,180) solid;
    border-radius: 2.5px;
    font-size: 16px;
    outline: none;
    -webkit-appearance: none;
}

#mailing-list-outline {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    font-size: 0;
}

#email_error, #password_error {
    padding-bottom: 10px;
    font-size: 16px;
    color: #e00850;
    display: none;
}

#submit_button {
    height: 40px;
    width: 160px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    background: #7366e5;
    -webkit-appearance: none;
    outline: none;
}

#new_to_nitery {
    padding-top: 15px;
    font-size: 16px;
    color: rgb(150,150,150);
}

#new_to_nitery > a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

#loading_container {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: rgb(50,50,50);
}

@media screen and (max-width: 440px) {
    
    #inner_container {
        width: calc(100% - 40px);
        left: 20px;
        margin-left: 0;
    }
}