/* Container principal */
.panel-body {
    padding: 20px;
}

.contact-container {
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #444;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

/* Formulário de contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(35, 28, 21, 0.6);
    border-left: 5px solid #f0c843;
    border-radius: 12px;
    padding: 25px 30px;
}

.contact-form .form-group {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 700;
    color: #f0c843;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1b1b1b;
    color: #ccc;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f0c843;
}

.form-actions {
    text-align: center;
    margin-top: 15px;
}

.btn-submit {
    background-color: #f0c843;
    color: #1b1b1b;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #d4a900;
}

/* Alerta informativo */
.alert-info {
    background-color: #222;
    border-left: 5px solid #f0c843;
    padding: 15px 20px;
    border-radius: 8px;
    color: #ccc;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}