main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content {
    width: 1124px;
    max-width: 100vw;
    padding: 1rem;
}

.accreditation h1 {
    margin-top: 4rem;
}

.accreditation h2 {
    font-size: 2.5em;
    margin-top: 4rem;
    font-weight: normal;
}

.accreditation h2,
.accreditation p {
    line-height: 1.5em;
}

@media (max-width: 600px) {
    .accreditation h1 {
        margin-top: 2rem;
        font-size: 1.3em;
        text-align: center;
    }
    
    .accreditation h2 {
        font-size: 1.5em;
        margin-top: 2rem;
        font-weight: normal;
    }

}

.cover {
    width: 100%;
    height: 100vh;
    background: linear-gradient(#00000025, #000000a0), url("/static/assets/img/peroquet.jpg");
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.demande-container {
    padding: 1rem;
    box-shadow: 1px 0.5px 10px #00000025;
    border-radius: 4px;
    background: white;
}

.form-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 50vh;
}

.step-container ul {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-right: 4px solid #efefef;
    height: 100%;
}

.step-container ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 10vh;
    border-left: 2px dashed #a7a7a7;
}

.step-container ul li.down {
    border-left: 2px solid #436850;
}

.step-container ul li a {
    display: flex;
    align-items: center;
    color: #a7a7a7;
}

.step-container ul li.current-step a {
    color: #436850;
    font-weight: bold;
}

.step-container  span {
    display: flex;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-items: center;
    background: #a7a7a7;
    border-radius: 100%;
    position: relative;
    left: -16px;
    top: 0px;
}

.step-container ul li.current-step span {
    background: #436850;
    font-weight: bold;
}

.step-container i {
    font-size: 1.1em;
}

@media (max-width: 800px) {
    .step-container {
        display: none;
    }
}

.content {
    flex: 1;
}

.step-container ul li a {
    text-decoration: none;
}

.row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.row img {
    height: 2rem;
    border: 1px solid #cccccc;
}

.delegation {
    align-items: center;
    align-content: center;
    margin-bottom: 2rem;
}

.delegation img {
    width: 4rem;
}

.delegation span {
    text-transform: uppercase;
}

.doc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 200px;
    max-width: 100%;
    text-align: center;
    padding: 1rem;
    border: 4px solid #505050;
    border-radius: 8px;
    transition: 0.4s;
}

.doc:hover {
    background-color: #505050;
    cursor: pointer;
}

.doc i {
    font-size: 3.0em;
    color: #505050
}

.doc label {
    color: #505050;
}

.doc .btn {
    background: #505050;
    color: white;
}

.doc input {
    display: none;
}

.doc:hover i, .doc:hover label {
    color: white;
}

.doc:hover .btn {
    color: #505050;
    background: white;
}

.success {
    display: none;
}

.recap {
    width: 500px;
    max-width: 90vw;
    padding: 1rem;
    border: 1px solid #cccccc;
    background: #f8f8f8;
}

@media (max-width: 600px) {
    .recap  {
        width: auto;
    }
}

.recap .title {
    font-size: 1.5em;
}

.recap .subtitle {
    color: #555555;
    padding-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
}

.radio-group {
    max-width: 100%;

    i{
        font-size: 2.0em;
    }
    input {
        display: none;
        i {
            color: #777777;
        }
    }
    label {
        padding: 1rem;
        border: 1px solid #cccccc;
        border-radius: 4px;
        height: 3.0rem;
        min-height: 3.0rem;
        max-height: 3.0rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        min-width: 120px;
    }

    label:hover {
        cursor: pointer;
        opacity: 0.4;
        transition: 0.4s;
    }

    input[type="radio"]:checked+label{
        border: 2px solid green;
        color: green;
        i{
            color: #006428;
        }
    }
}