.container {
    width: 75%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: #1F2326 !important;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
}

/* Seções do Formulário */
.section {
    margin-bottom: 30px;
}

h2 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

/* Campos de Entrada */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    color: #E0E0E0 !important;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

label i {
    margin-right: 10px;
}

input, textarea, select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background-color: #f9fafb;
}

textarea {
    height: 120px;
    resize: vertical;
}

select {
    background-color: #fff;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

/* Botões */
button {
    padding: 12px 20px;
    background-color: #2BC4C3;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

button i {
    margin-right: 10px;
}

button:hover {
    background-color: #26A6A0;
}

.btn-cancel {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    color: #2BC4C3;
    text-decoration: none;
    border: 1px solid #2BC4C3;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel i {
    margin-right: 10px;
}

.btn-cancel:hover {
    background-color: #f9fafb;
}

/* Botões Lado a Lado (Ações) */
.form-actions {
    display: flex;
    width: 50%;
    gap: 10px;
    margin-top: 20px;
}

.form-actions button, .form-actions a.btn-cancel {
    flex: 1;
    text-align: center;
    padding: 10px;
    margin: 0;
    height: 50px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    input, textarea, select {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }

    .btn-cancel {
        font-size: 14px;
    }
}
