/**
 * 2FAC Authentication - Main Stylesheet
 * 
 * This stylesheet contains all global styles for the 2FAC authentication system.
 * It includes layouts, components, and utility classes used across multiple pages.
 */

/* Base Elements
--------------------------------------------- */
html, body {
    height: 100%;
    margin: 0;
    background-color: #f8f9fa;
}

/* Layout Containers
--------------------------------------------- */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

/* Passphrase Page
--------------------------------------------- */
.passphrase-center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card-width {
    max-width: 500px;
    width: 100%;
}

.passphrase-textarea {
    text-align: center !important;
}

/* Card Components
--------------------------------------------- */
.login-card, .verify-card {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.card-max-400 {
    max-width: 400px;
    width: 100%;
}

/* Icons & Visual Elements
--------------------------------------------- */
.user-icon-container, .icon-circle {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-lg {
    font-size: 50px;
}

.key-icon {
    font-size: 2.5em;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* Progress Indicators
--------------------------------------------- */
.progress-tall {
    height: 20px;
}

/* Passkey Management
--------------------------------------------- */
.badge {
    font-size: 0.8em;
}

.manage-passkey-page {
    padding-top: 20px;
}

/* Dashboard Layout
--------------------------------------------- */
.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
} 