.position-relative {
    position: relative; /* Ensure this parent container is relative */
}

.eye-icon {
    position: absolute;
    top: 50%; /* Adjust as needed */
    right: 10px; /* Adjust spacing */
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10; /* Ensure it stays above other elements */
}

.invalid-feedback {
    color: #ff0000;
    border-color: #ff0000; 
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
    border-color: #ff0000 !important; 
    background-color: #ffe6e6 !important;
    box-shadow: none !important; 
}

.alert-danger{
    color: #ff0000;
}

.position-absolute {
    position: absolute;
    right: 10px; /* Adjust this value if needed */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10; /* Ensure it is above other elements */
}

.input-container {
    position: relative;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: .25rem;
    padding: 15px;
    margin-bottom: 1rem;
}

.alert-success .alert-icon {
    color: #155724;
    font-size: 1.5rem;
    margin-right: .5rem;
}

/* Error Message Styles */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: .25rem;
    padding: 15px;
    margin-bottom: 1rem;
}
