.fincred-navbar {
    background-color: #6c757d;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fincred-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.fincred-logo:hover {
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 3px;
    transform: rotate(45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

.brand-slogan {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.header-banner {
    background: linear-gradient(135deg, #20b2aa, #17a2b8);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.validation-result-banner {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #c3e6cb;
}

.validation-result-banner.invalid {
    background-color: #f8d7da;
    color: #721c24;
    border-bottom: 1px solid #f5c6cb;
}

.validation-result-banner.warning {
    background-color: #fff3cd;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.result-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: 2rem;
    text-align: center;
}

.validation-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: 2rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.certification-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20b2aa, #17a2b8);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #20b2aa;
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.15);
}

.btn-validate {
    background: linear-gradient(135deg, #20b2aa, #17a2b8);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-validate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
    color: white;
}

.validation-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid #20b2aa;
}

.body-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.fincred-footer {
    background-color: #6c757d;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}

.footer-section {
    text-align: center;
}

.footer-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    height: 60px;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    font-size: 16px;
    color: white;
}

.contact-link {
    color: white;
    text-decoration: none;
}

.contact-link:hover {
    color: #20b2aa;
    text-decoration: underline;
}

.body-bg {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .validation-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .footer-divider {
        display: none;
    }
    
    .fincred-footer .row > div {
        margin-bottom: 20px;
    }
    
    .fincred-footer .row > div:last-child {
        margin-bottom: 0;
    }
}