﻿/* Home support page styling */
.support-page .welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blueid-support-logo {
    flex-shrink: 0;
}

.client-logo {
    margin-top: 15px;
}

    .client-logo img {
        max-height: 60px;
    }

.support-page h1 {
    color: #1565c0;
}

/* Form styling */
.form-label i {
    color: #1565c0;
}

/* Responsive header for small screens */
@media (max-width: 480px) {
    .support-page .welcome-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .support-page h1 {
        font-size: 1.5rem;
    }

    .blueid-support-logo svg {
        width: 60px;
        height: 60px;
    }
}
