/**
 * Digital Library Manager - Home Page Styles
 * Version: 3.0
 */

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --dlm-primary: #009E49;
    --dlm-primary-dark: #007a3a;
    --dlm-secondary: #FCD116;
    --dlm-accent: #3858e9;
    --dlm-danger: #EF2B2D;
    --dlm-text: #2c3e50;
    --dlm-text-light: #5f6d75;
    --dlm-bg-light: #f8f9fa;
    --dlm-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --dlm-radius: 10px;
    --dlm-transition: all 0.3s ease;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.dlm-home-page {
    max-width: 100% !important;
    padding: 20px 15px !important;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dlm-text);
}

/* ============================================
   SECTION HÉRO - NON CONNECTÉ
   ============================================ */
.dlm-hero-section {
    background: linear-gradient(135deg, var(--dlm-primary) 0%, var(--dlm-primary-dark) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--dlm-radius);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.dlm-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: dlmRotate 20s linear infinite;
}

@keyframes dlmRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dlm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.dlm-hero-content h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dlm-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.dlm-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
 
.dlm-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--dlm-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--dlm-transition);
}

.dlm-hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.dlm-hero-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.dlm-hero-feature h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.dlm-hero-feature p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.dlm-hero-actions {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dlm-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--dlm-secondary);
    color: #2c3e50;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--dlm-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.dlm-hero-button:hover {
    background: white;
    color: var(--dlm-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dlm-hero-button .dashicons {
    font-size: 1.5rem;
    width: auto;
    height: auto;
}

/* Bouton "Créer un compte" en vert */
.dlm-hero-button.dlm-signup-btn {
    background: var(--dlm-primary);
    color: white;
}

.dlm-hero-button.dlm-signup-btn:hover {
    background: var(--dlm-primary-dark);
    color: white;
}

/* BOUTON SE CONNECTER */
.dlm-hero-button.dlm-login-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dlm-hero-button.dlm-login-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   GRILLE DES LIVRES - VERSION NON CONNECTÉE
   ============================================ */
.dlm-books-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 20px !important;
}

.dlm-book-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--dlm-transition);
}

.dlm-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.dlm-book-link {
    text-decoration: none;
    color: inherit;
}

.dlm-book-cover {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f0f0f0;
}

.dlm-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dlm-book-info {
    padding: 12px;
}

.dlm-book-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--dlm-text);
}

.dlm-book-info .dlm-book-author {
    margin: 0 0 5px 0;
    font-size: 0.85rem;
    color: #666;
}

.dlm-book-info .dlm-book-price {
    margin: 0;
    font-weight: 600;
    color: var(--dlm-primary);
}

.dlm-format-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.dlm-format-badge.pdf {
    background: var(--dlm-danger);
}

.dlm-format-badge.epub {
    background: var(--dlm-primary);
}

.dlm-book-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.dlm-book-badge.free {
    background: var(--dlm-secondary);
    color: #333;
}

/* Force les cartes à ne pas déborder */
.dlm-book-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.dlm-book-cover img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 2/3 !important;
    object-fit: cover !important;
}

/* ============================================
   SECTION PRÉSENTATION
   ============================================ */
.dlm-presentation-section {
    margin: 3rem 0;
}

.dlm-presentation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
}

.dlm-presentation-card {
    background: white;
    border-radius: var(--dlm-radius);
    padding: 1.5rem;
    box-shadow: var(--dlm-shadow);
    transition: var(--dlm-transition);
    border: 1px solid #eee;
}

.dlm-presentation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dlm-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dlm-presentation-card h3 {
    color: var(--dlm-text);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--dlm-primary);
    padding-bottom: 0.5rem;
}

.dlm-process-steps {
    margin: 1.5rem 0;
}

.dlm-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.dlm-step-number {
    background: var(--dlm-primary);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.dlm-step-content h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
    color: var(--dlm-text);
}

.dlm-step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--dlm-text-light);
}

.dlm-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dlm-features-list li {
    margin-bottom: 1rem;
}

.dlm-features-list strong {
    display: block;
    color: var(--dlm-text);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.dlm-features-list p {
    margin: 0;
    color: var(--dlm-text-light);
    font-size: 0.85rem;
}

.dlm-advantages {
    margin: 0;
}

.dlm-advantage {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dlm-advantage .dashicons {
    color: var(--dlm-primary);
    font-size: 1.3rem;
    margin-right: 0.75rem;
}

.dlm-advantage h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
    color: var(--dlm-text);
}

.dlm-advantage p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--dlm-text-light);
}

/* ============================================
   FORMULAIRE D'INSCRIPTION
   ============================================ */
.dlm-registration-container {
    width: 100%;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--dlm-radius);
    box-shadow: var(--dlm-shadow);
    box-sizing: border-box;
    margin-top: 3rem;
}

.dlm-registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dlm-registration-header h2 {
    color: var(--dlm-text);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.dlm-subtitle {
    color: var(--dlm-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Sélecteur de compte */
.dlm-account-type-selector {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.dlm-account-type-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dlm-account-type-header h4 {
    color: var(--dlm-text);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.dlm-selection-hint {
    color: var(--dlm-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

#dlm-selected-type {
    font-weight: 600;
    color: var(--dlm-primary);
}

.dlm-account-type-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dlm-account-type-btn {
    flex: 1;
    padding: 1.5rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--dlm-transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.dlm-account-type-btn:hover {
    border-color: var(--dlm-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 158, 73, 0.1);
}

.dlm-account-type-btn.active {
    border-color: var(--dlm-primary);
    background: #f0fff0;
    box-shadow: 0 4px 12px rgba(0, 158, 73, 0.15);
}

.dlm-account-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dlm-account-info {
    flex: 1;
}

.dlm-account-title {
    display: block;
    font-weight: 600;
    color: var(--dlm-text);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.dlm-account-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--dlm-text-light);
}

.dlm-account-check {
    color: var(--dlm-primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    transition: var(--dlm-transition);
}

.dlm-account-type-btn.active .dlm-account-check {
    opacity: 1;
    transform: scale(1);
}

.dlm-account-type-indicator {
    text-align: center;
}

.dlm-indicator-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    position: relative;
    margin: 1rem auto;
    max-width: 200px;
}

.dlm-indicator-slider {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--dlm-primary);
    border-radius: 2px;
    transition: left 0.3s ease;
}

.dlm-indicator-slider.user {
    left: 0;
}

.dlm-indicator-slider.author {
    left: 50%;
}

.dlm-indicator-labels {
    display: flex;
    justify-content: space-between;
    max-width: 200px;
    margin: 0 auto;
}

.dlm-indicator-label {
    font-size: 0.8rem;
    color: var(--dlm-text-light);
    font-weight: 500;
    transition: var(--dlm-transition);
}

.dlm-indicator-label.active {
    color: var(--dlm-primary);
    font-weight: 600;
}

/* Champs du formulaire */
.dlm-form-row {
    display: flex;
    gap: 1rem;
}

.dlm-form-row .dlm-form-group {
    flex: 1;
}

.dlm-form-group {
    margin-bottom: 1.2rem;
}

.dlm-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dlm-text);
}

.dlm-form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--dlm-transition);
    box-sizing: border-box;
}

.dlm-form-group input:focus {
    border-color: var(--dlm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 158, 73, 0.1);
}

.required {
    color: var(--dlm-danger);
}

.dlm-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--dlm-text-light);
}

/* Bloc auteur/éditeur */
.dlm-author-fields {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dlm-author-fields.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.dlm-author-header {
    margin-bottom: 1rem;
}

.dlm-author-header h4 {
    color: var(--dlm-text);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

/* Checkbox */
.dlm-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.dlm-checkbox-custom {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    top: 3px;
    transition: var(--dlm-transition);
}

.dlm-checkbox-label input[type="checkbox"] {
    display: none;
}

.dlm-checkbox-label input[type="checkbox"]:checked+.dlm-checkbox-custom {
    background: var(--dlm-primary);
    border-color: var(--dlm-primary);
}

.dlm-checkbox-label input[type="checkbox"]:checked+.dlm-checkbox-custom::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dlm-checkbox-text {
    font-size: 0.9rem;
    color: var(--dlm-text-light);
    line-height: 1.4;
}

/* Bouton soumission */
.dlm-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dlm-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--dlm-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dlm-submit-btn:hover {
    background: var(--dlm-primary-dark);
}

.dlm-submit-btn:active {
    transform: scale(0.98);
}

.dlm-btn-spinner {
    animation: dlmSpin 1s linear infinite;
}

@keyframes dlmSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Lien connexion */
.dlm-login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dlm-text-light);
    font-size: 0.9rem;
}

.dlm-login-link a {
    color: var(--dlm-primary);
    text-decoration: none;
    font-weight: 500;
}

.dlm-login-link a:hover {
    text-decoration: underline;
}

/* ============================================
   HOME PAGE - UTILISATEUR CONNECTÉ
   ============================================ */
.dlm-connected-home {
    max-width: 100% !important;
    padding: 20px 15px !important;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Section bienvenue */
.dlm-welcome-section {
    background: linear-gradient(135deg, var(--dlm-primary) 0%, var(--dlm-primary-dark) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 158, 73, 0.2);
}

.dlm-welcome-header h2 {
    margin: 0 0 5px 0;
    font-size: 2rem;
    color: white;
}

.dlm-welcome-text {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.dlm-quick-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.dlm-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    color: var(--dlm-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--dlm-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dlm-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.dlm-action-button.primary {
    background: var(--dlm-secondary);
    color: #333;
}

.dlm-action-button.author {
    background: var(--dlm-accent);
    color: white;
}

.dlm-action-button.logout {
    background: #f8f9fa;
    color: var(--dlm-danger);
}

/* Statistiques */
.dlm-home-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dlm-stat-item {
    text-align: center;
    padding: 20px;
    background: var(--dlm-bg-light);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dlm-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dlm-primary);
    line-height: 1.2;
}

.dlm-stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Sections */
.dlm-home-section {
    margin-bottom: 40px;
}

.dlm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dlm-section-header h4 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dlm-text);
}

.dlm-view-all {
    color: var(--dlm-primary);
    text-decoration: none;
    font-weight: 500;
}

.dlm-view-all:hover {
    text-decoration: underline;
}

/* Liste des populaires */
.dlm-popular-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dlm-popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.dlm-popular-item:last-child {
    border-bottom: none;
}

.dlm-popular-item:hover {
    background: var(--dlm-bg-light);
}

.dlm-popular-rank {
    width: 30px;
    height: 30px;
    background: var(--dlm-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dlm-popular-info {
    flex: 1;
}

.dlm-popular-title {
    display: block;
    font-weight: 500;
    color: var(--dlm-text);
    text-decoration: none;
    margin-bottom: 3px;
}

.dlm-popular-title:hover {
    color: var(--dlm-primary);
}

.dlm-popular-author {
    font-size: 0.85rem;
    color: #666;
}

.dlm-popular-sales {
    font-size: 0.9rem;
    color: var(--dlm-primary);
    font-weight: 500;
    white-space: nowrap;
}

/* Catégories */
.dlm-home-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.dlm-categories-cloud h4 {
    margin: 0 0 15px 0;
    color: var(--dlm-text);
}

.dlm-category-tag {
    display: inline-block;
    padding: 6px 15px;
    margin: 0 8px 8px 0;
    background: #f0f7f2;
    color: var(--dlm-primary);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--dlm-transition);
}

.dlm-category-tag:hover {
    background: var(--dlm-primary);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .dlm-home-page,
    .dlm-connected-home {
        padding: 15px 10px !important;
        max-width: 100% !important;
    }
    
    .dlm-registration-container {
        padding: 1.5rem 1rem;
    }
    
    .dlm-hero-content h1 {
        font-size: 2rem;
    }

    .dlm-hero-features {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .dlm-presentation-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1rem;
    }

    .dlm-account-type-buttons {
        flex-direction: column;
    }

    .dlm-form-row {
        flex-direction: column;
        gap: 0;
    }

    .dlm-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .dlm-hero-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .dlm-quick-actions {
        flex-direction: column;
    }

    .dlm-action-button {
        width: 100%;
        justify-content: center;
    }

    .dlm-home-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dlm-books-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .dlm-popular-item {
        flex-wrap: wrap;
    }

    .dlm-popular-sales {
        width: 100%;
        margin-left: 45px;
    }
}

@media (max-width: 480px) {
    .dlm-home-page,
    .dlm-connected-home {
        padding: 15px 10px;
    }
    
    .dlm-registration-container {
        padding: 1rem 0.75rem;
    }

    .dlm-hero-section {
        padding: 2rem 1rem;
    }

    .dlm-hero-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .dlm-hero-button .dashicons {
        font-size: 1.2rem;
    }

    .dlm-registration-container {
        padding: 1rem;
    }

    .dlm-welcome-header h2 {
        font-size: 1.5rem;
    }

    .dlm-form-group {
        margin-bottom: 1rem;
    }
    
    .dlm-form-group input {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .dlm-account-type-btn {
        padding: 1rem;
    }
    
    .dlm-account-icon {
        font-size: 1.5rem;
    }
    
    .dlm-account-title {
        font-size: 1rem;
    }
    
    .dlm-account-desc {
        font-size: 0.8rem;
    }
}
