@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
}

.form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 300px;
    position: relative;
    overflow: hidden;
}

.form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(0, 195, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: glowEffect 3s infinite;
}

@keyframes glowEffect {
    0% {
        transform: rotate(45deg) translateY(-100%);
    }

    100% {
        transform: rotate(45deg) translateY(100%);
    }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5), 0 0 20px rgba(0, 195, 255, 0.3), 0 0 30px rgba(0, 195, 255, 0.1);
}

.login-form {
    position: relative;
    z-index: 1;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 195, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus {
    outline: none;
    border-color: rgba(0, 195, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.3);
}

.submit-action {
    width: 100%;
    padding: 12px;
    background: rgba(0, 195, 255, 0.2);
    border: 1px solid rgba(0, 195, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-action:hover {
    background: rgba(0, 195, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
}

.cf-turnstile {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .form {
        padding: 26px 20px;
        width: 280px;
        border: none;
    }
}