﻿.pv-form-field {

}

.pv-form-field label {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.pv-form-field-input {
    width:100%;
    display:flex;
    flex-direction:row;
    height:fit-content;
    align-items: flex-end;
}
   

    .pv-form-field-input input {
        width: 100%;
        border: none;
        padding: 0px 0px 2px 0px;
        border-bottom: 0.1px #ccc solid;
        transition: border-bottom 0.5s ease; /* smooth */
    }

    .pv-form-field-input:focus-within input {
        outline: none;
        border-bottom: 0.1px #000 solid;
    }

    .pv-form-field-input:focus-within .pv-form-field-input-button,
    .pv-form-field-input:focus-within .pv-form-field-input-icon{
        border-bottom: 0.1px #000 solid;
    }

.pv-form-field-input-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-bottom: 0.1px #ccc solid;
    transition: border-bottom 0.5s ease; /* smooth */
    padding-bottom:12px;
}

    /*.pv-form-field-input-icon:focus-visible {
        border-bottom: 0.1px #000 solid;
        outline: none;
    }*/

    .pv-form-field-input-icon span {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 100%;
        font-size: 20px
    }

.pv-form-field-input-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    width: 20px;
    height: 20px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom: 0.1px #ccc solid;
    transition: border-bottom 0.5s ease; /* smooth */
}

    .pv-form-field-input-button span {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        width: 100%;
        height: 100%;
        border-bottom: none !important;        
    }

.pv-form-validation-message {
    color: #d32f2f; /* error red */
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}
