﻿.panel {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.panel-body {
    padding: 0;
}

.form-group, .input-wrapper {
    position: relative;
}

.input-wrapper .form-control {
    width: 100%;
    padding-right: 30px; /* Adjust based on the width of the eye icon */
}

.eye-pass {
    position: absolute;
    right: 10px; /* Adjust as needed */
    transform: translateY(-50%);
    cursor: pointer;
}

.red-border {
    border: 1px solid #E02424 !important;
}

.default-border {
    border: 1px solid #D1D5DB !important;
}

.d-none {
    display: none;
}

.d-contents {
    display: contents;
}

.required-text {
    margin-top: 8px;
    color: #E02424;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 17.5px */
    position: absolute;
}

.loginErrorMessage ul {
    list-style-type: none;
    padding: 0; /* Remove default padding from ul */
    margin: 0; /* Remove default margin from ul */
}

.loginErrorMessage li {
    text-align: left;
    margin: 0 0 0 10px;
}

@media only screen and (max-width: 767.5px) {
    .required-text {
        font-size: 12px;
    }
}