/* Home Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

#blazor-error-ui, .mud-layout, .mud-main-content, .mud-container {
    margin: 0 !important;
    padding: 0 !important;
}

.attensi-page {
    background-image: url('/images/attensi-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.attensi-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.attensi-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.attensi-header {
    text-align: center;
    margin-bottom: 3rem;
    flex: 0 0 auto;
}

.attensi-logo-section {
    margin-bottom: 2rem;
}

.attensi-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.attensi-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.attensi-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
}

.attensi-service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.attensi-service-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.attensi-login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.attensi-login-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
}

.attensi-login-button {
    background: rgb(30, 214, 102) !important;
    color: rgb(18, 71, 23) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    box-shadow: 0 4px 12px rgba(30, 214, 102, 0.3) !important;
    transition: all 0.2s ease !important;
}

.attensi-login-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(30, 214, 102, 0.4) !important;
}

.attensi-login-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.attensi-footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.attensi-footer-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.attensi-footer-right {
    display: flex;
    align-items: center;
}

.attensi-footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.attensi-footer-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.attensi-footer-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.attensi-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 1.5rem 0;
    border: none;
}

@media (max-width: 640px) {
    .attensi-container {
        padding: 1rem;
    }

    .attensi-card {
        padding: 2rem 1.5rem;
    }

    .attensi-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .attensi-footer-left {
        justify-content: center;
    }

    .attensi-footer-right {
        justify-content: center;
    }
}