/* Account Unlock Process Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: auto;
}

body {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0099D8 0%, #293F63 100%);
    z-index: -1;
}

.homepage-card {
    background: rgba(255,255,255,0.97);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 480px;
    width: 95vw;
    margin: 4vh auto;
    min-height: 350px;
    max-height: 92vh;
    justify-content: flex-start;
    overflow-y: auto;
    font-family: inherit;
}

.homepage-card::-webkit-scrollbar {
    width: 6px;
    background: #fff;
}

.homepage-card::-webkit-scrollbar-thumb {
    background: #b3e5fc;
    border-radius: 6px;
}

.homepage-logo {
    width: 120px;
    max-width: 120px;
    min-width: 70px;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.homepage-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: #0085CA;
    text-align: center;
    width: 100%;
    font-family: inherit;
}

.homepage-desc {
    font-size: clamp(1rem, 2.2vw, 1.08rem);
    color: #293F63;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    font-family: inherit;
}

.homepage-subtitle {
    color: #0085CA;
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    text-align: center;
    width: 100%;
    margin-bottom: 0.7rem;
    margin-top: 1.2rem;
    font-family: inherit;
    letter-spacing: 0.5px;
    display: block;
}

.homepage-label-center {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.08rem);
    color: #293F63;
    font-weight: 500;
    font-family: inherit;
    margin-bottom: 0.5rem;
}

/* Input Styling */
.homepage-userid {
    width: 100%;
    padding: 0.75rem;
    font-size: clamp(1rem, 2.2vw, 1.08rem);
    border-radius: 0.75rem;
    border: 1px solid #b0bec5;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
    text-align: center;
}

.homepage-userid:focus {
    border-color: #0085CA;
    outline: none;
}

/* Validation Message */
.text-danger {
    color: #dc3545 !important;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.text-danger.font {
    font-family: inherit;
}

/* Buttons */
.option-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.choice-chip-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.choice-chip.homepage-btn {
    padding: 0.7rem 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    border-radius: 2rem;
    font-weight: 600;
    background: #fff;
    color: #0085CA;
    border: 2px solid #0085CA;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    outline: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    margin-bottom: 0;
    user-select: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38%;
    min-width: 110px;
    margin: 0 0.5rem 0.5rem 0.5rem;
}

.choice-chip.homepage-btn:hover,
.choice-chip.homepage-btn:focus {
    background: #0085CA;
    color: #fff;
    border-color: #005b8c;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
}

.choice-chip.homepage-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Service Desk Call Button */
.service-desk-btn {
    display: inline-block;
    background: #0085CA;
    color: #fff !important;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 133, 202, 0.3);
    margin-top: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    border: 2px solid #0085CA;
    outline: none;
}

.service-desk-btn:hover {
    background: #fff;
    color: #0085CA !important;
    border-color: #0085CA;
    box-shadow: 0 4px 12px rgba(0, 133, 202, 0.4);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.service-desk-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 133, 202, 0.3);
}

.service-desk-btn .phone-icon {
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.service-desk-btn:hover .phone-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(169deg) brightness(96%) contrast(101%);
}

/* Footer */
.homepage-footer {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: #293F63;
    text-align: center;
    width: 100%;
    font-family: inherit;
}

.homepage-footer p {
    margin: 0;
    padding: 0.5rem 1rem;
}

.homepage-footer a {
    color: #0085CA;
    text-decoration: underline;
    font-weight: 500;
    font-family: inherit;
}

.homepage-powered {
    margin-top: 1.5rem;
    color: #293F63;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    font-family: inherit;
}

@media (max-width: 700px) {
    .homepage-card {
        max-width: 98vw;
        min-width: 0;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        margin: 2vh auto;
        min-height: 0;
    }
    
    .homepage-title {
        font-size: 1.5rem;
    }
    
    .homepage-logo {
        width: 80px;
    }
    
    .choice-chip.homepage-btn {
        width: 90%;
        min-width: 90px;
        font-size: 0.95rem;
        padding: 0.5rem;
    }
}