﻿.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    color: #19346E;
    font-size: 15px;
    font-weight: 600;
}

.custom-input {
    height: 52px;
    border: 1px solid #D9DDE6;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 16px;
    color: #19346E;
    transition: .2s;
}

    .custom-input::placeholder {
        color: #9AA5C0;
    }

    .custom-input:focus {
        outline: none;
        border-color: #2E8B57;
        box-shadow: 0 0 0 3px rgba(46,139,87,.15);
    }

.custom-textarea {
    width: 100%;
    min-height: 150px;
    resize: none;
    border: 1px solid #D8DCE6;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-family: inherit;
    color: #19346E;
    background: #FFF;
    transition: .2s;
}

    .custom-textarea::placeholder {
        color: #9AA5C0;
    }

    .custom-textarea:focus {
        outline: none;
        border-color: #2E8B57;
        box-shadow: 0 0 0 3px rgba(46,139,87,.15);
    }

.textarea-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.textarea-counter {
    color: #7B8794;
    font-size: .85rem;
}

.custom-select {
    width: 100%;
    height: 52px;
    border: 1px solid #D9DDE6;
    border-radius: 10px;
    padding: 0 42px 0 16px;
    font-size: 16px;
    color: #19346E;
    background-color: #FFF;
    cursor: pointer;
    transition: .2s;
    /* Remove aparência padrão */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Seta personalizada */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2319346E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

    .custom-select:focus {
        outline: none;
        border-color: #2E8B57;
        box-shadow: 0 0 0 3px rgba(46,139,87,.15);
    }

    .custom-select:disabled {
        background-color: #F5F7FA;
        color: #9AA5C0;
        cursor: not-allowed;
    }

    .custom-select option {
        color: #19346E;
    }

    .custom-select:hover {
        border-color: #B9C3D5;
    }
