/*
This software is copyright Anthony Fralick and Little Ridge Tech Consulting - 2024
Please visit https://www.littleridge.ca for more information. anthony@littleridge.ca
*/
/* 
    Created on : Feb 10, 2025, 9:53:59 p.m.
    Author     : anthony
*/

/* Style for the label */
label.LRTC_text_label {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Style for the text input field */
input[type="text"].LRTC_text_input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Style for the text input field when focused */
input[type="text"].LRTC_text_input:focus {
    border-color: #009879;
    box-shadow: inset 0 1px 3px rgba(0, 152, 121, 0.5);
    outline: none;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    input[type="text"].LRTC_text_input {
        font-size: 14px;
        padding: 8px 12px;
    }

    label.LRTC_text_label {
        font-size: 14px;
    }
}
