/* Custom Styles for FlexSkillMarket */

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

/* Logo styles */
.logo-img {
    height: 2.5rem; /* 40px equivalent to text-2xl */
    width: auto;
    max-height: 3rem;
}

/* Custom gradient for hero section */
.hero-gradient {
    background: linear-gradient(135deg, rgba(245, 247, 250, 1) 0%, rgba(230, 236, 242, 1) 100%);
}

/* Simple animation for cards on hover */
.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Form styles for login/signup pages */
.auth-card {
    max-width: 400px;
    margin: 0 auto;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.15s ease;
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

img.logo-img {
    max-width: 340px;
    width: 100%;
    height: auto;
}