/* ==============================================
   LOGIN PAGE - COMPANY BRANDING ENHANCEMENTS
   ============================================== */

/* Company Logo Styling */
.brand-logo-wrapper {
    /*margin-bottom: 40px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    max-width: 300px;
    max-height: 280px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1);
    animation: fadeInUp 0.8s ease-out;
}

.brand-logo-icon {
    animation: fadeInUp 0.8s ease-out;
}

.brand-logo-icon i {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Information */
.brand-contact-info {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
}

.contact-item i {
    margin-right: 12px;
    font-size: 1.1rem;
    opacity: 0.9;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    opacity: 0.95;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-item a:hover {
    opacity: 1;
    border-bottom-color: white;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    background: white;
    color: #667eea;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: white;
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: rotate(360deg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .brand-logo-img {
        max-width: 180px;
        max-height: 100px;
    }

    .social-media-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-logo-img {
        max-width: 150px;
        max-height: 80px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
