@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: white;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .glass-effect {
        padding: 2rem 1.5rem !important;
        margin: 0 1rem;
    }

    h1 {
        font-size: 1.75rem !important;
    }
}

/* Custom focus styles */
input:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Custom placeholder color */
::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}