/* Contenedor principal */
.minimal-comments-wrapper {
    max-width: 650px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: inherit;
}

/* Labels */
.minimal-comments-wrapper label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #111;
}

/* Inputs */
.minimal-comments-wrapper input,
.minimal-comments-wrapper textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-size: 15px;
    background: #fafafa;
    transition: 0.2s ease;
}

.minimal-comments-wrapper input:focus,
.minimal-comments-wrapper textarea:focus {
    border-color: #000;
    background: #fff;
    outline: none;
}

/* Botón negro */
.minimal-comments-wrapper button {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
}

.minimal-comments-wrapper button:hover {
    background: #333;
}

/* Comentarios */
.minimal-comment {
    margin-top: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.minimal-comment strong {
    font-weight: 600;
    color: #111;
}

.minimal-comment p {
    margin: 8px 0 0;
    font-size: 15px;
    color: #444;
}
