.content > .form{
    max-width: 650px;
    min-width: 450px;
    padding-bottom: 20px;
}

h2{
    font-size: 2.5rem;
    margin-block-start: 0;
}

.content .france_connect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 10px;
    border: solid 1px black;
}

.france_connect *{
    margin: 10px;
}

.france_connect .files{
    margin: 0px;
    display: flex;
    width: 100%;
}
.france_connect button {
    width: 17%;
    aspect-ratio: 1/1.33;
    background: var(--primary-color);
    background-size: contain;
    border: none;
    display: flex;
    align-self: center;
    justify-content: center;
    border-radius: 4px;
}

.france_connect button.row {
    width: 34%;
    aspect-ratio: 1.5/1;
}

.france_connect button img {
    margin: auto;
}
.france_connect p {
    font-size: 0.8rem;
}

.france_connect a {
    font-size: var(--font-size);
    color: var(--primary-color);
}

.input-group{
    display: flex;
width: 100%;
align-items: flex-start;
gap: 8px;
margin-bottom: 20px;
}

.input-group.column{
    flex-direction: column;
}

.input-group label{
    color: #000;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.input-group span {
    color: var(--primary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: underline;
    cursor: pointer;
}

.input-group input{
    display: flex;
height: 30px;
justify-content: center;
align-items: center;
gap: 8px;
align-self: stretch;
border: none;
border-radius: 4px 4px 0px 0px;
border-bottom: 2px solid #000;
padding: 2.5px;

background: #EEE;
}

.input-group input:focus{
    outline: none;
}

.action button{
    height: 33px;
    width: 20%;
    color: #fff;
    border-radius: 0px 4px 0px 0px;
    background: var(--primary-color);
}

.action{
    display: flex;
}

h3{
    font-size: 28px;
}

/* Help Modal */
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.781);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-block-start: 0;
}

.modal-content p {
    font-size: 1rem;
}

.modal-content button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

.modal-content button:hover {
    background-color: #0d6efd;
}

.modal-content button.close {
    background-color: #dc3545;
}

.modal-content button.close:hover {
    background-color: #c82333;
}

/* End of help.css */
