
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white_scnd);
    padding:0;
    margin:0;
}

button{
    font: inherit;
    transition: color 0.07s ease, background 0.07s ease;
}

input{
    font: inherit;
}

.navbar{
    background: var(--white_scnd);
    color: var(--black_scnd);
    stroke: var(--black_scnd);
}
.navbar_dropdown{
    background: var(--white_scnd);
}
.navbar_option_container{
    display: none;
}

.text_input:focus{
    outline-color: var(--green_thrd);
    outline-style: solid;
    outline-width: 2px;
}

.horizontal_divider{
    height: 1px;
    width: 100%;
    background: var(--black_sxth);
}

.form_container{
    display: flex;
    flex-direction: column;
    background: var(--white_frst);
    padding: 20px;
    box-sizing: border-box;
    margin-top: 100px;
    border-radius: 10px;
    font-size: 1.1rem;
    width: 50ch;
}

.legal_objects_container{
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: var(--black_frth);
}

.info_container{
    display: flex;
    flex-direction: column;
}

.register_header{
    color: var(--black_scnd);
    font-size: 2rem;
    margin-bottom: 10px;
}

.submit_container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header{
    font-size: 0.9rem;
    margin-top: 20px; 
    margin-bottom: 5px;
}

.email{
    flex-grow: 1;
}

.username{
    margin-bottom: 20px;
    flex-grow: 1;
}

.description{
    display: none;
}

.accept_container{
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
    align-items: center;
}

.accept{
    width: 1.6ch;
    height: 1.6ch;
    border-style: solid;
    border-color: var(--black_thrd);
    color: rgba(0, 0, 0, 0);
    background: none;
    padding: 0;
    line-height: 1.25ch;
}
@media (hover:hover) and (pointer:fine){
	.accept:hover{
	    background: var(--black_ftfth);
	}
}
.accept:active{
    background: var(--black_ftfth);
}
.accept.checked{
    background: var(--black_thrd);
    color: var(--green_frst);
}
@media (hover:hover) and (pointer:fine){
	.accept.checked:hover{
	    background: var(--black_frth);
	}
}
.accept.checked:active{
    background: var(--black_frth);
}

.link{
    color: var(--blue_thrd);
    cursor: default;
    text-decoration: none;
}
@media (hover:hover) and (pointer:fine){
	.link:hover{
	    color: var(--black_frth);
	}
}
.link:active{
    color: var(--black_frth);
}

.text_input.invalid{
    outline-style: solid;
    outline-color: var(--red_scnd);
}

.login_container{
    margin-top: 10px;
    display: flex; 
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 1500px) {
    body{
        align-items: center;
        justify-content: start;
        margin-top: 30px;
    }

    .form_container{
        max-width: 60ch;
    }

}


@media only screen and (max-width: 700px) {
    .form_container{
        width: 100%;
        border-radius: 0;
    }
}

