        :root {
            --bg-dark: #121212;
            --bg-light: #1e1e1e;
            --border-color: #333;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --accent-purple: #bb86fc;
            --accent-green: #4CAF50;
            --accent-red: #f44336;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            margin: 0;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        header {
            background-color: var(--bg-light); padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        header .container {
             display: flex;
             justify-content: flex-end;
             align-items: center;
             padding: 0;
             position: relative;
             height: 70px;
        }
        .logo { 
            position: absolute;
            left: 0;
            top: 5px;
            height: 100px; 
            width: auto;
            z-index: 200;
        }
        
        @media (max-width: 480px) {
            .logo {
                height: 75px;
            }
        }
        .hamburger-menu { display: none; } 

        main {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }
        .forms-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            max-width: 1000px;
        }
        
        /* --- ŠTÝLY PRE ANIMOVANÝ OKRAJ --- */
        .animated-border-box {
            position: relative;
            padding: 3px;
            border-radius: 12px;
            overflow: hidden;
            background: transparent;
            width: 100%;
            max-width: 450px;
            flex-grow: 1;
        }
        .animated-border-box::before {
            content: '';
            position: absolute; top: -50%; left: -50%;
            width: 200%; height: 200%; z-index: 1;
            background: conic-gradient(from 0deg, #007bff, #dc3545, #007bff);
            animation: rotate 6s linear infinite;
        }
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        .form-container {
            position: relative; z-index: 2;
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-sizing: border-box;
        }
        .form-container h2 { margin-top: 0; color: var(--accent-purple); }
        .form-container label { display: block; margin: 1rem 0 0.5rem 0; font-weight: bold; color: var(--text-secondary); }
        .form-container input {
            width: 100%; padding: 0.8rem;
            background-color: var(--bg-dark); border: 1px solid var(--border-color);
            color: var(--text-primary); border-radius: 5px; box-sizing: border-box; font-size: 1em;
        }
        .form-container button {
            width: 100%; padding: 1rem; border: none; border-radius: 5px;
            font-size: 1.1em; font-weight: bold; cursor: pointer;
            margin-top: 1.5rem; transition: opacity 0.2s;
        }
        .btn-primary { background-color: var(--accent-purple); color: var(--bg-dark); }
        .form-container button:disabled { background-color: #555; cursor: not-allowed; color: var(--text-secondary); }
        .required { color: var(--accent-red); }
        .password-hint { font-size: 0.8em; color: var(--text-secondary); margin-top: 0.2rem; }
        .tel-number { font-size: 0.8em; color: var(--text-secondary); margin-top: 0.2rem; }
        .message { padding: 1rem; margin-bottom: 1.5rem; border-radius: 5px; text-align: center; font-weight: bold; border: 1px solid; }
        .message.success { background-color: rgba(76, 175, 80, 0.2); color: #81c784; border-color: var(--accent-green); }
        .message.error { background-color: rgba(244, 67, 54, 0.2); color: #e57373; border-color: var(--accent-red); }
        
        .remember-me {
            display: flex; align-items: center;
            margin-top: 1rem;
        }
        .remember-me input[type="checkbox"] {
            width: auto; margin-right: 0.5rem; accent-color: var(--accent-purple);
        }
        .remember-me label {
            margin: 0; color: var(--text-primary); font-weight: normal;
        }

        .forgot-password-link { color: var(--accent-teal); text-decoration: none; }
        
        footer { 
            background-color: var(--bg-light);
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        .footer-text p { color: var(--text-secondary); font-size: 0.8rem; max-width: 1200px; margin: 0.5rem auto; }
        
        /* Modal */
        .modal-backdrop { display: none; position: fixed; z-index: 1040; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
        .modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: var(--bg-light); padding: 1.5rem 2rem; border-radius: 10px; border: 1px solid var(--border-color); width: 90%; max-width: 600px; }
        .modal-header h3 { margin: 0; color: var(--text-primary); }
        .modal-header h4 { margin: 0; color: var(--text-primary); }
        .modal-body { max-height: 60vh; overflow-y: auto; color: var(--text-primary); }
        .modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding-top: 15px; border-top: 1px solid var(--border-color); margin-top: 15px; }
        #agreeAndEnable { background-color: var(--accent-green); color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
        #disagreeAndRedirect { background-color: var(--accent-red); color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
        .cf-turnstile {
	    margin: 20px 0; 
	    display: flex;
	    justify-content: center; 
	}

	
	.cf-turnstile iframe {
	    max-width: 100%;
	}
	/* Obal, aby sme mohli pozíciovať oko voči nemu */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Samotné políčko na heslo */
.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* Vytvorí miesto pre ikonku napravo, aby text nešiel cez ňu */
    /* Tu si nechaj svoje vlastné štýly (border, padding atď.) */
}

/* Tlačidlo s okom */
.toggle-password {
position: absolute;
  right: 15px;
  left: 80%;
  transform: translateY(-25%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: #666;
}

.toggle-password:hover {
    color: #000;
}

/* Veľkosť ikonky */
.eye-icon {
    width: 20px;
    height: 20px;
}
