.vt-reclutamiento-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vt-reclutamiento-form .form-group {
    margin-bottom: 1.5rem;
}

.vt-reclutamiento-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.vt-reclutamiento-form .form-group input,
.vt-reclutamiento-form .form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.vt-reclutamiento-form .form-group input:focus {
    border-color: #0073aa;
    outline: none;
}

.vt-submit-btn {
    background-color: #0073aa;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vt-submit-btn:hover {
    background-color: #005d8c;
}

.vt-notificacion {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: white;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: vtSlideIn 0.3s forwards;
}

.vt-notificacion.vt-exito {
    background-color: #4CAF50;
}

.vt-notificacion.vt-error {
    background-color: #f44336;
}

@keyframes vtSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vt-admin-container {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}