.information-container{
    width: 90%;
    display: flex;
    gap: 4rem;
    margin: 4em auto;
    max-width: 1200px;
}

.information-container .navigation-items a{
    margin-bottom: 0.5rem;
}

.information-container .navigation-items .active{
    color: var(--color-primary);
}

.information-container .navigation-items .navigation-title{
    margin-bottom: 2rem;
}

.information-container .navigation-items .logout-btn{
    margin-top: 2rem;
}

.information-container .information-section h1.m-down{
    margin-bottom: 3rem;
}

.information-container .information-section a.next-steps{
    text-decoration: underline;
    color: #262626;
    margin-bottom: 3.5rem;
    font-size: 32px;
    display: block;
}
.required-asterisk {
    color: red;
    margin-left: 2px;
}

.hint {
    font-size: 0.9em;
    color: #888; /* Light gray color for the hint */
    margin-top: 5px;
    display: block;
}

.information-container form{
    display: flex;
    flex-direction: column;
}

.information-container form button{
    margin-top: 3rem;
    min-width: 350px;
    align-self: center;
}

.information-container .navigation-items{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.information-container .information-section{
    flex: 4;
    min-height: 300px;
}

.information-container .information-section h1{
    color: var(--color-primary);
    font-size: 44px;
    margin-bottom: 1rem;
}

.information-container .information-section p{
    color: #626262;
    line-height: 22px;
    margin-bottom: 1.5rem;
}

.information-container .information-section .inputs{
    display: flex;
    gap: 1rem;
}

.information-container .information-section .input-gp{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.6rem;
    flex: 1;
}

.information-container .information-section label{
    color: #626262;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-primary);
}

.information-container .information-section input,
.information-container .information-section select{
    border: 1px solid #626262;
    height: 44px;
    width: 100%;
    background-color: transparent;
    outline: none;
    padding: 0.4rem;
}

.information-container .information-section .separater-line{
    width: 100%;
    height: 1px;
    background-color: #626262;
    margin: 3.5rem 0;
}

.input-gp p.no-margin{
    margin-bottom: 0;
}

.information-container .information-section .include-information{
    display: flex;
    flex-direction: column;
}

.information-container .information-section .include-information .item{
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
}

.information-container .information-section .include-information .item input[type='checkbox']{
    width: 25px;
    margin-right: 1rem;
}

.information-container .information-section .include-information .item label{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    width: 200px;
}

.information-container .information-section .include-information .item h3{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    width: 200px;
    color: #626262;
}

.information-container .information-section .include-information .item label.acknowledge{
    width: auto;
}

@media screen and (max-width: 850px){
    .information-container{
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 600px){
    .information-container .information-section .inputs{
        flex-direction: column;
        gap: 0.3rem;
    }
}