/*Webapp: config*/

#webapp_success{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-black3);
    border: 1px solid var(--color-dark-green);
    border-radius: 5px;
    font-weight: bold;
    color: var(--color-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeOut 3s ease forwards;
}

#webapp_error{
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-red);
    border-radius: 5px;
    color: #FFF;
    animation: fadeOut 3s ease forwards;
}

.form-content{
    grid-template-columns: 1fr 1fr;
    grid-column-gap:30px;
}

.form-content.config{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap:30px;
}

.config .form-group:nth-child(1),
.config .form-group:nth-child(2),
.config .form-group:nth-child(3),
.config .form-group:nth-child(4) {
  grid-column: span 2;
}

.last-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.last-section .first-chiild .container-form{
    width: 100%;
}

.last-section p{
    font-size: 11px;
}

/*---------------------*/

@media (max-width:900px) {

    .form-content{
        width: 96%;
        grid-template-columns: 1fr;
        padding: 5px;
    }

    .form-content.config{
        width: 96%;
        grid-template-columns: 1fr;
    }

    .last-section{
        grid-template-columns: 2fr;
    }

    #main-content .support{
        margin: 0;
    }

    
}