/* Index page specific styles */

body {
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.logo-bg {
    width: min(750px, 80vw);
    height: min(750px, 80vw);
    background-image: url('../imgs/secure-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2rem;
    -webkit-filter: drop-shadow(0 4px 8px rgba(57, 255, 20, 0.3));
    filter: drop-shadow(0 4px 8px rgba(57, 255, 20, 0.3));
    max-width: 750px;
    max-height: 750px;
}

.welcome-text {
    font-size: 3rem;
    font-weight: bold;
    color: #39FF14;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.button-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.button-row button {
    background: transparent;
    color: #C0C0C0;
    border: 2px solid #C0C0C0;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.button-row button:hover,
.button-row button:active {
    background: #39FF14;
    color: #000000;
    border-color: #39FF14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

/* Form container */
#form-container {
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 2.5rem;
    }
    
    .button-row {
        flex-direction: column;
        align-items: center;
    }
    
    .button-row button {
        width: 250px;
    }
    
    .logo-bg {
        width: min(500px, 90vw);
        height: min(500px, 90vw);
        max-width: 500px;
        max-height: 500px;
    }
    
    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-bg {
        width: min(350px, 85vw);
        height: min(350px, 85vw);
        max-width: 350px;
        max-height: 350px;
    }
    
    .welcome-text {
        font-size: 2rem;
    }
}