:root {
    --primary-blue: #005f80;
    --secondary-blue: #007ba7;
    --light-blue: #e6f3f7;
    --dark-blue: #003d52;
    --accent-blue: #4a9bc1;
    --gradient-bg: linear-gradient(135deg, #005f80 0%, #007ba7 100%);
    --card-shadow: 0 10px 25px rgba(0, 95, 128, 0.1);
    --card-shadow-hover: 0 15px 35px rgba(0, 95, 128, 0.15);
}

body {
    color: #4b5563;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.navbar {
    padding: 15px 30px;
    background: var(--gradient-bg) !important;
    box-shadow: 0 4px 20px rgba(0, 95, 128, 0.1);
    border: none;
}

.navbar-brand img {
    max-width: 250px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.main-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: none;
    padding: 40px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bg);
}

.welcome-title {
    font-weight: 500;
	font-family: Museo Sans 500;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.welcome-slogan {
    font-weight: 400;
    color: #ef7d00; /*a2c516*/
    margin-bottom: 20px;
	margin-top:-20px;
    font-size: 1.2rem;
}
.welcome-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.section-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.3rem;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.login-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    background: white;
}

.login-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: var(--card-shadow-hover);
}

.card-header {
    background: var(--primary-blue) !important;
    color: white !important;
    border: none;
    padding: 20px;
    font-weight: 500;
    font-size: 1.1rem;
	
}

.card-header i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.card-body {
    padding: 25px;
    background: #fafbff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2px;
	text-align:center;
}

.card-text {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.btn-modern {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: center;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 95, 128, 0.3);
    background: var(--dark-blue);
    color: white;
}

.info-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, #f0f9ff 100%);
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-top: 40px;
    overflow: hidden;
}

.info-card .card-body {
    padding: 10px;
    background: transparent;
}

.info-card .card-title {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 20px;
}

.info-card .btn-link {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    max-width: none;
    margin: 0 auto;
}

.info-card .btn-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 95, 128, 0.3);
}


footer {
    
    color: #9ca3af;
    border: none;
    margin-top: 30px;

}

#footertable {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.4;
}


#footertable img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#footertable img:hover {
    opacity: 1;
}

img {
  border-radius:0px 0px 0px 0px;
  margin-top: 0px;
  margin-left:0px;
 
	
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-container {
    animation: fadeInUp 0.6s ease;
}

.login-card {
    animation: fadeInUp 0.8s ease;
}

.info-card {
    animation: fadeInUp 1s ease;
}

.footer-content {
	text-align:center;
	margin-bottom:0px;
	margin-top: 20px;
	
}
/* Responsive improvements */
@media (max-width: 768px) {
    .main-container {
        margin: 15px;
        padding: 25px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .login-card {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
}

@media (min-width: 769px) {
    .login-cards-row {
        gap: 30px;
    }
    
    .login-card {
        min-height: 280px;
    }
}