    /* General */

    /* Contenedor del formulario */
    .container {
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 90%;
        max-width: 100%;
    }

    /* Títulos */
    h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Campos del formulario */
    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-control {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    /* Select */
    .form-control select {
        cursor: pointer;
    }

    /* Textarea */
    textarea.form-control {
        resize: none;
        height: 100px;
    }

    /* Mensajes de error */
    .text-danger {
        color: red;
        font-size: 14px;
    }

    /* Botón */
    .btn {
        background: #007bff;
        color: white;
        border: none;
        padding: 10px;
        width: 100%;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
    }

    .btn:hover {
        background: #0056b3;
    }

    /* Alertas */
    .alert {
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 5px;
        text-align: center;
    }

    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .rc-anchor {
        width: 100% !important;
    }