
/* Initial animation when the message appears */
@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Exit animation when the message disappears */
@keyframes slideOutToTop {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Style for the message container */
.messages {
position: absolute;
top: 12%;
left: 1%;
transform: translateX(-50%);
z-index: 9999;
width: 100%;
max-width: 500px;

text-align: center;
font-size: 16px;
font-weight: bold;


border-radius: 12px;

}
.error{
margin-bottom: -1rem;
}

/* Apply the entry animation */
.slide-in {
    animation: slideInFromTop 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Apply the exit animation */
.slide-out {
    animation: slideOutToTop 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Alert types for different messages */
.alert-success {
    background: linear-gradient(135deg, #3df096, #b6e6e8);
}



.alert-info {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.alert-warning {
    background: linear-gradient(135deg, #ffa2a2, #fa6262);
}


       body {
    background-color: #edf5fc !important;
}
    nav.navbar.navbar-light.navbar-expand-md.bg-opacity-75.bg-primary-subtle.py-3.shadow.p-3.mb-5.bg-white.rounded {
        background-color: #d2eafd !important;
    }
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: #f0f0f0 !important;
        align-items: center; 
        margin-top:30px;
    }
    
    .footer{
      background-color: #f0f0f0 !important;
      width:100%;
    }
    
    .top-footer {
        background-color: #d2eafd;
        padding: 20px;
        color: #000;
        text-align: left;
        width: 100%;
    }
      
    .top-footer b{
        color:#000;
        font-size:large;
      
        padding: 20px; 
    }
    .top-footer a{
        text-decoration:none;
    }
    
    .footer-top p,
    .footer-bottom p {
        text-align: center;
    }
    
    .top-footer a {
       color:#0a4bff;
    }

        .profile-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgb(255 255 255);
        }
        
        .profile-picture {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-picture-dropdown {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 10px;
            margin-left: 11PX;
            
            border: 2px solid rgb(0 0 0);
        }
        
        .profile-dropdown-content {
            padding: 5px;
        }
        .navbar-light .dropdown-toggle::after {
            display: none;
        }
        .user-email {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
        }
     
        .profile-dropdown-content {
            padding: 10px;
        }
        
        .profile-dropdown-content .dropdown-item {
            padding: 5px 0;
        }
        .logo {
            max-width: 745px;
            width: auto;
            height: auto;
            margin: 0 auto;
        }
        
        @media (max-width: 991.98px) { 
            .logo {
                max-width: 320px; 
            }
        }
        
        @media (max-width: 767.98px) {
            .logo {
                max-width: 200px; 
            }
        }
        .form-group.row {
            display: flex;
            flex-wrap: wrap;
        }
        
        .form-group.row .col-md-6 {
            flex: 0 0 50%; /* Each column takes 50% width */
            max-width: 50%;
        }
        
        .captcha {
    display: flex
;
    align-items: center;
    gap: 10px;
   
   
   
}





    


.captcha input {
    
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
label.small.mb-1 {
    margin-left: 15px;
}
.mb-1 {
    margin-bottom: .25rem !important;
}
button.col-md-12.btn.btn-secondary {
    width: 9%;
    margin-left: 588px;
}
