﻿.welcome-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-in-out;
}

.login-btn {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #764ba2;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .login-btn:hover {
        transform: translateY(-2px);
        background-color: #f1f1f1;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }
}
