body
{
    background-color: var(--black);
}
h1
{
    color: var(--white);
    font-size: 35px;
    font-family: hel-bold;
}
.form-container
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-reg
{
    color: var(--white);
}
form
{
    min-width: 25%;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 5px;
    color: var(--white);
}
form h1
{
    text-align: center;
}
form .pr-btn
{
    margin-top: 5px;
}
form span
{
    text-align: center;
    display: block;
    font-family: hel-reg;
    font-size: 13px;
}
.sp
{
    display: flex;
    justify-content: left;
    align-items: center;
}
.sp label
{
    font-family: hel-reg;
    font-size: 13px;
    margin-left: 5px;
}
.check
{
    width: 12px;
    height: 12px;
    background-color: var(--white);
}
form .error
{
    color: #c60000;
    text-align: left;
    line-height: 1;
}
@media screen and (max-width: 1100px)
{
    form
    {
        width: 30%;
    }    
}
@media screen and (max-width: 900px)
{
    form
    {
        width: 40%;
    }    
}
@media screen and (max-width: 500px)
{
    form
    {
        width: 80%;
    }    
}