main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 2rem 0;
}

.mainHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap : 1rem;
    padding: 1rem;
    color: var(--text-color);
}

.container-form {
    padding: var(--padding-container);
    
    form{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 1rem;

        .form-group{
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 5px;
            label{
                font-weight: bold;
                color: var(--text-color); 
            }
            .form-control{
                width: 100%;
                padding : 10px;
                border: var(--border-color);
                border-radius: var(--border-radius);
            }
            .form-control:focus{
                outline: var(--secondary-text-color) solid 2px;
            }

            textarea.form-control{
                min-height: 150px;
                resize: vertical;
            }

            input[type="file"]{
                background-color: #ffffff;
            }

            input[type="file"]::file-selector-button {
                border: var(--border-color);
                border-radius: var(--border-radius);
                padding: 10px;
                background-color: #ffffff;
                color: var(--text-color);
                cursor: pointer;
            }

            input[type="file"]::file-selector-button:hover{
                background-color: #fbe1a5;
            }
        }
    }
}

.actions{
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    h1 , p{
        text-align: center;
    }
    main{
        margin: 0;
        margin-top: 2rem ;
    }
    .actions{
        span{
            display: none;
        }
    }
}