﻿/* Login Page Specific Styles */

/* Hero Section */
.hero-section {
    background: rgba(13, 40, 24, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

/* Hero Title */
.hero-title {
    text-align: center;
    color: #9B59B6;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Promo Text */
.promo-text {
    color: #9B59B6;
    font-size: 1.1em;
    font-weight: normal;
    margin: 0 0 30px 0;
    line-height: 1.7;
    text-align: left;
}

.promo-banner-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.hero-cta .btn {
    font-size: 1.1em;
    padding: 15px 35px;
}

/* Content Sections */
.content-section {
    margin: 60px 0;
}

.content-block {
    background: rgba(13, 40, 24, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-block:hover {
    border-color: #9B59B6;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.content-block-left {
    flex-direction: row;
}

.content-block-right {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #9B59B6;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-text p {
    color: #f5f5f5;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-text .btn {
    margin-top: 20px;
}

.content-image-wrapper {
    flex-shrink: 0;
    width: 350px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0;
        margin: 20px 0;
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .content-block {
        flex-direction: column !important;
        padding: 30px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .content-block-left,
    .content-block-right {
        flex-direction: column !important;
    }
    
    .content-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-text {
        width: 100%;
    }
}
