﻿/* custom-input.css */

.custom-input {
    border: 2px solid #ff9900 !important; /* Your new border color */
    border-radius: 4px; /* optional */
    padding: 0.5rem; /* optional padding */
    outline: none;
    transition: border-color 0.3s ease;
}

    /* Focus state */
    .custom-input:focus {
        border-color: #ff6600 !important; /* Change on focus */
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.5); /* optional */
    }

    /* Hover state */
    .custom-input:hover {
        border-color: #ff8800 !important;
    }

    /* Dropdown options (selectize, if using selectize.js) */
    .custom-input.selectize-input {
        border-color: #ff9900 !important;
    }
..frmbg
{
    background-color:yellow;
}
