.LoadTitle{
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: end;
}
.LoadTitle h1{
    color: white;
    font-size: 36pt;
    font-weight: normal;
    line-height: 1;
}

.PagesNavigator {
    height: 100%;
    display: flex;
    grid-row-start: 1;
    grid-row-end: 2;
    margin-left: 5%;
    margin-right: 5%;
}
.SubNav{
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
}
.SubNav a{
    text-decoration: none;
}
.links{
    color: white;
    font-size: 12pt;
    font-weight: lighter;
    cursor: pointer;
    text-align: center;
    margin-left: 6%;
}
.links-selected{
    color: white;
    font-size: 12pt;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    margin-left: 6%;
}

.links:hover{
    color: white;
    font-weight: normal;
    transition: font-weight 0.1s;
}

.PagesNavigator nav{
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.LoadContent {
    height: 100%;
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-right: 5%;
}
.LoadField-1 {
    display: flex;
    flex-direction: column;
    grid-row: 1;
    grid-column: 1;
}
.LoadField-2 {
    display: flex;
    flex-direction: column;
    grid-row: 1;
    grid-column: 2;
}
.LoadField-3 {
    display: flex;
    flex-direction: column;
    grid-row: 1;
    grid-column: 3;
}
.LoadField-4 {
    display: flex;
    flex-direction: column;
    grid-row: 3;
    grid-column-start: 1;
    grid-column-end: 3;
    align-self: center;
}
.LoadField-5 {
    display: flex;
    flex-direction: column;
    grid-row: 1;
    grid-column-start: 3;
    grid-column-end: 4;
    align-self: center;
}
.LoadForm {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 10%;
    margin-top: 5%;
    height: 100%;
}
.LoadForm label {
    color: white;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 14pt;
    display: inline;
}

.LoadForm input{
    border-radius: 0;
}
.LoadForm input:focus{
    border-radius: 0;
    outline: none;
}

.Error-1{
    grid-row: 2;
    grid-column: 1;
}
.Error-2{
    grid-row: 2;
    grid-column: 2;
}
.Error-3{
    grid-row: 2;
    grid-column: 3;
}
.LoadForm small{
    color: gray;
    font-weight: 300;
    font-size: 12pt;
}
.LoadForm .status{
    padding-bottom: 0;
}
.LoadButton {
    grid-row: 3;
    grid-column: 3;
    color: white;
    border: none;
    height: 40px;
    display: flex;
    align-self: center;
    margin: 0 10% 0 10% ;
}

.LoadButton input{
    cursor: pointer;
    width: 100%;
    color: white;
    font-size: 14pt;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 400;

}
.LoadButton input:hover{
    font-weight: bold;
    transition: font-weight 0.1s;
}
.LoadError {
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    height: 30px;
}
@media (max-width: 500px) {
    .LoadForm{
        grid-template-columns: unset;
        grid-template-rows: repeat(5,1fr);
    }
    .LoadField-1{
        grid-column: unset;
    }
    .LoadField-2{
        grid-row: 2;
        grid-column: unset;
    }
    .LoadField-3{
        grid-row: 3;
        grid-column: unset;
    }
    .LoadField-4{
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row: 5;
    }
    .LoadField-5{
        grid-row: 3;
        grid-column: unset;
    }
    .LoadButton{
        grid-column: unset;
        grid-row: 4;
    }
    .LoadField-4 label{
        font-size: 12pt;
        text-align: center;
    }

}
