body {
    font-family: 'Arial', sans-serif;
    background-image: url("/src/images/logos/bg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.navbar {
    background-color: #1f4e78;
    height: 60px;
}

.navbar-brand {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.nav-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #495057;
    border: none;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
}

.nav-link.active {
    color: #1f4e78;
    background-color: transparent;
    border-bottom: 2px solid #1f4e78;
    font-weight: bold;
}

.hidden {
    display: none;
}

.footer {
    background-color: #1f4e78;
    color: white;
    text-align: center;
    padding: 15px;
}

.btn-primary {
    background-color: #1f4e78;
    border-color: #1f4e78;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.alert {
    margin-bottom: 20px;
}




.custome-warning{
    padding:20px;
    margin: 20px;
    background-color: #FF4B2B;
    color: white;
    animation: fadeOut 2s forwards 2s; /* Fade out after 3 seconds */
}

.custome-success{
    padding:20px;
    margin: 20px;
    background-color: #0fb90d;
    color: white;
    animation: fadeOut 2s forwards 2s; /* Fade out after 3 seconds */
}
/* Fade-out animation */
@keyframes fadeOut {
    to {
        opacity: 0;
    }
}
