﻿/* Contenedor general */
.form-group {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 18px 22px;
    transition: var(--transition);
    transition: var(--transition);
    margin-top: 2%;
    min-height: 150px;
}

    .form-group:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

.cont{
    width:100%;
    height:40px;
}
/* Etiqueta del campo */
.form_label_inc {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 0.4px;
}

    .form_label_inc::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: var(--accent);
        margin-top: 5px;
        border-radius: 3px;
    }

/* Columna del input */
.col-md-10 {
    display: flex;
    align-items: center;
}

/* Input tipo file */
input[type="file"].form-control {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    cursor: pointer;
    height: 60px !important;
}

    input[type="file"].form-control:hover {
        border-color: var(--accent);
        background: #fff;
    }

/* Botón del input */
input[type="file"]::file-selector-button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    margin-right: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

    input[type="file"]::file-selector-button:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
    }

/* Foco */
input[type="file"].form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 164, 70, 0.25);
}

/* Mensaje de error */
.text-danger {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--danger);
    background: rgba(197, 48, 48, 0.05);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(197, 48, 48, 0.1);
}
