.text-justify{
    text-align: justify;
}


.file-label {
    display: inline-block;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Show "..." when text is too long */
    max-width: 100%; /* Ensure it fits within its container */
    padding: 5px;
}

.green-background {
    background-color: green;
    color: white;
    padding: 5px;
    border-radius: 4px;
}

.error-message {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}


.position-relative {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: gray;
}

.password-toggle:hover {
    color: black;
}

.desc-box {
    background: #f9f9f9;
    border-left: 4px solid #007bff;
    padding: 10px 16px;
    margin-bottom: 15px;
    border-radius: 6px;
    text-align: right !important;
}
.desc-box h5 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 16px;
}
