/* General Reset */
body, h1, h2, h3, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Homepage Container */
.homepage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #4c8bf5, #3462a8);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    max-width: 650px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

/* Headline */
.hero-section h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Description Text */
.hero-section p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Login Button */
.btn-login {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #2c6dd5;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-login:hover {
    background-color: #204b96;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        width: 90%;
        padding: 30px;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .btn-login {
        font-size: 16px;
        padding: 10px 20px;
    }
}
