@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background-color: #f3f4f6;
    /* gray-100 - slightly darker than 50 for better contrast with white cards */
    background-image: none;
}

.journal-entry {
    transition: all 0.3s ease;
}

.journal-entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.input-focus:focus {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.password-strength {
    height: 4px;
    transition: all 0.3s ease;
}

.step-indicator {
    transition: all 0.3s ease;
}

.step-active {
    background: linear-gradient(135deg, #0ea5e9 0%, #a855f7 100%);
}