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

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: #646464;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.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: 100%;
    aspect-ratio: 3/1;
    color: #fff;
    border-radius: 0px 4px 0px 0px;
    background: var(--primary-color);
}

.action{
    display: flex;
}

h3{
    font-size: 28px;
}

/* Files 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;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    color: var(--primary-color);
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: var(--primary-color);
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }