.custom_bg {
    position: relative;
    background-image: url(../lily/images/login/bg.png);
    z-index: 0;
}

.custom_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 30%);
}

label {
    font-weight: bold;
}

.btn-register-primary {
    color: #1e1e4b;
    background-color: #ABE6FF !important;
    border-color: #ABE6FF !important;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-register-primary:hover {
    background-color: #89d9ff !important;
    border-color: #89d9ff !important;
    color: #0e0e3a;
}

.box-shadow-grey {
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 8px;
}

.span {
    color: #ff0033;
    font-size: 20px;
}

.button-container {
    text-align: center;
}

.form-field-feedback {
    color: red;
    display: none;
    font-size: 0.875em;
    padding-top: 0.5rem;
}

.custom-width-95 {
  width: 95% !important;
  height: 75% !important;
}

@media screen and (min-width: 1200px) {
    .custom-width-95 {
        width: 75% !important;
    }
}

/* Custom Notification Modal Styles */
.custom-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.custom-notification-overlay.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.custom-notification-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.custom-notification-overlay.show .custom-notification-content {
    transform: translateY(0);
}

.custom-notification-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-notification-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.custom-notification-close-btn {
    border: none;
    background: none;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: #6c757d;
}

.custom-notification-close-btn:hover {
    color: #000;
}

.custom-notification-body {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.custom-notification-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.custom-notification-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}
