﻿.required-field {
    float: right;
    color: red;
}

.pass-msg {
    color: red;
}


.popup-box {
    opacity: 0.9;
    display: none;
    position: absolute;
    top: -20px !important;
    left: 420px; /* Adjust as needed to place it to the right of the input */
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    padding: 10px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 13px;
    border-radius: 25px;
}

.popup-box .arrow-left {
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #f8f9fa;
}

.popup-box::before {
    /* optional border for the arrow */
    content: "";
    position: absolute;
    left: -11px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 11px solid #ccc;
    z-index: -1;
}

.form-pass {
    position: inherit;
}

.pass-group {
}

.popup-box ul {
    text-align: left;
    color: red;
}