/* Landing Page Styles */

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.landing-container {
    max-width: 900px;
    width: 100%;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-section img {
    max-width: 300px;
    height: auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.logo-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.login-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.login-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.login-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.login-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.login-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s;
}

.login-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.login-card .btn i {
    margin-right: 8px;
}

.logout-message {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.logout-message i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .logo-section img {
        max-width: 200px;
    }
    
    .logo-section h1 {
        font-size: 2rem;
    }
    
    .login-cards {
        grid-template-columns: 1fr;
    }
}
