/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Orbitron:wght@700&display=swap');

:root {
    --primary: #8a2be2; /* Violet/purple */
    --primary-dark: #5a1a9a;
    --secondary: #ffffff;
    --dark: #121212;
    --accent: #c770ff;
    --text: #ffffff;
    --text-light: #aaaaaa;
    --bg: #0A0B0F;
    --card-bg: rgba(22, 25, 30, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --Main-Green2: #30F482;
    --Gradient-2: linear-gradient(134deg, #8EFF92 -14.36%, #4CCAE6 174.71%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    font-family: 'Rajdhani', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.texture_body {
    z-index: -1;
    width: 472px;
    height: 472px;
    flex-shrink: 0;
    border-radius: 472px;
    background: var(--Gradient-2);
    filter: blur(250px);
    left: -20%;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
}

.body_texture_2 {
    z-index: -1;
    right: 0;
    top: 50%;
    position: fixed;
    pointer-events: none;
    transform: translateY(-50%);
}

.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    margin-bottom: 30px;
    text-align: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: var(--Gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.logo p {
    color: var(--text-light);
    font-size: 16px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
}

.submit-btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--Gradient-2);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 202, 230, 0.4);
}

.security-note {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.shield-icon {
    color: var(--Main-Green2);
    font-size: 16px;
}

footer {
    margin-top: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .captcha-container {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .captcha-container {
        padding: 20px 15px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
}