@font-face {
    font-family: roboto;
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: roboto-b;
    src: url(../fonts/Roboto/Roboto-Bold.ttf);
}

:root {
    --site-color-01: #e6bb04;
    --site-color-01-hover: #ffd700;
    --menu-count: 5;
}

* {box-sizing: border-box;}

html {
    font-size: 62.5%;
}

body {
    background-color: #eee;
}

.header-nav {
    position: sticky;
    top: 0px;
    width: 100%;
    height: 60px;
    background-color: #ccddff;
    display: flex;
    justify-content: flex-end;
    z-index: 1000;
    font-family: roboto, georgia;
}

.header-nav ul {
    list-style: none;
}

.header-nav ul li {
    display: inline;
    float: left;
    border-left: 3px solid #ccddff;
    border-right: 1px solid #ccddff;
}

.header-nav ul li a {
    padding: 0 20px;
    font-family: roboto, georgia;  
    line-height: 60px;
    color: var(--site-color-01-hover);
    display: block;
    height: 100%;
    font-size: 1.6rem;
    transition: all ease-in-out 100ms;
}

.header-nav ul li a:hover {
    color: #1a253a;
    transition-duration: 0.4s;
    font-size: 1.8rem;
    /*transform: scale(1.1);*/
}


.open-button-r {
    background: linear-gradient(#80aaff, #6699ff, #0044cc);
    color: #ffd700;
    font-size: 1.6rem;
    text-shadow: 1px 1px 4px #000000;
}

.open-button-b {
    background: linear-gradient(#80aaff, #6699ff, #0044cc);
    color: #ffd700;
    font-size: 1.6rem;
    text-shadow: 1px 1px 4px #000000;
}

.open-button-r:hover {
    background: linear-gradient(#B8860B, #FFFF00, #ffd700);
    color: #1a253a;
    text-shadow:none;
    font-size: 1.8rem;
    font-family: roboto-b, georgia;
    transition-duration: 0.4s;
}

.open-button-b:hover {
    background: linear-gradient(#B8860B, #FFFF00, #ffd700);
    color: #1a253a;
    text-shadow:none;
    font-size: 1.8rem;
    font-family: roboto-b, georgia;
    transition-duration: 0.4s;
}





/*Innen jön a bejelentkezési felugró ablak*/

/* A felugró űrlap - alapértelmezés szerint rejtett */
.form-popup {
  position: fixed;
  top: 60px;
  right: 15px;
  border-left: 3px solid #f1f1f1;
  border-right: 3px solid #f1f1f1;
  border-bottom: 3px solid #f1f1f1;
  font-family: roboto, georgia;
  background-color: #dce3ef;
}

/* Stílusok hozzáadása az űrlap tárolójához */
.form-container {
  max-width: 340px;
  padding: 5px;
}

/* Teljes szélességű beviteli mezők */
.form-container input[type=text], .form-container input[type=email], .form-container input[type=password], .select {
  width: 100%;
  font-size: 1.5rem;
  padding: 8px;
  margin: 5px 0 10px 0;
  border: 1px solid #ccc;
  background: #f1f1f1;
  border-radius: 8px;
}

.captcha-h4-a {
    color: #001a4d;
    font-family: roboto-b, georgia;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: none;
}

.captcha-h4-b {
    font-size: 1.4rem;
    font-weight: bold; 
    margin-top: 10px; 
    margin-left: 100px;
}

#timer-display {
    color: #6699ff; 
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 10px; 
    margin-left: 100px;
}

.form-container input[type=checkbox] {
  appearance: checkbox;
}

/* Amikor a bemenetek fókuszba kerülnek, tegyen valamit */
.form-container input[type=text]:focus, .form-container input[type=email]:focus, .form-container input[type=password]:focus {
  background-color: #fff;
  outline: none;
}

/* Stílus beállítása a submit/bejelentkezés gombhoz */
.form-container .btn {
  background: linear-gradient(#001a4d, #6699ff, #0044cc);
  color: #ffd700;
  text-shadow: 1px 1px 4px #000000;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: roboto-b, georgia;
  border-radius: 8px;
}

.label-main  {
    font-size: 1.6rem;
}

/* Néhány lebegő effekt hozzáadása a gombokhoz */
.form-container .btn:hover {
    background: linear-gradient(#B8860B, #FFFF00, #ffd700);
    color: #1a253a;
    text-shadow:none;
    font-size: 1.8rem;
    transition-duration: 0.4s;
}

/*A szem csukva stylus*/
.password-container, .confirm-password-container {
    position: relative;
}

.password-container p {
    font-size: 14px;
    font-family: roboto, georgia;
    color: #4d4d4d;
    text-shadow: none;
}

#caseNumberRequirement {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}


#pwd {
    padding-right: 30px; /* Hogy ne fedje el az ikon */
}

#confirm_pwd {
    padding-right: 30px; /* Hogy ne fedje el az ikon */
}

#pwd-log {
    padding-right: 30px; /* Hogy ne fedje el az ikon */
}

.toggle-password{
    position: absolute;
    right: 5px; /* Jobb szélre pozicionáljuk az ikont */
    top: 29%;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-confirm-password{
    position: absolute;
    right: 5px; /* Jobb szélre pozicionáljuk az ikont */
    top: 60%;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-login-password{
    position: absolute;
    right: 5px; /* Jobb szélre pozicionáljuk az ikont */
    top: 62%;
    transform: translateY(-50%);
    cursor: pointer;
}

/*Szem csukva idáig*/

/*Az incorrect ikon:*/
.password-info {
    display: flex;
    align-items: center;
    margin-bottom: 3px; /* Válaszd megfelelő méretet */
    margin-left: 10px;
}

.password-icon {
   margin-left: auto;
}

.pwd-info-text {
    margin-left: 10px;
    margin-bottom: 3px;
}

.form-popup p {
    font-size: 1.5rem;
    font-family: roboto-b, georgia;
    color: #0044cc;
    text-shadow: none;
    margin-bottom: 5px;
}

.terms-and-privacy {
    margin-left: 3px;
    font-size: 1.3rem;
}

.terms-and-privacy a {
    font-size: 1.3rem;
    color: blue;
    text-transform: none;
    line-height: 1rem;
    
}

.error-message {
    color: red; 
    font-weight: bold;
    text-shadow: none;
}

.error-list {
    list-style-type: none; /* Távolítsa el a listajeleket */
    padding: 0; /* Távolítsa el a listatérközt */
}

.error-list li {
    color: #721c24; /* Sötét piros szín */
    font-size: 1.2rem;
    text-align: center;
}

.success-list li {
    color: green;
    font-size: 1.2rem;
    text-align: center;
}







/*Felugró Bejelentkezési ablak vége*/

.wrapper-main {
    width: 1100px;
    margin: 0 auto;
}

h1 {
    font-size: 4rem;
    line-height: 1.5;
    color: #fff;
    font-family: roboto, georgia;
    font-weight: 600;
    text-transform: uppercase;
}

h2, h3, li {
    line-height: 1;
    font-family: roboto, georgia;
    font-weight: 600;
}

h2 {
    color: #fff;
    font-size: 2.4rem;
    text-transform: uppercase;
}

h3 {
    font-size: 2.5rem;
    color: #ffd700;
}

.index-video p, .index-books p, .index-articles p, .index-consulting p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    text-shadow: none;
    font-family: roboto, georgia;
    font-weight: 600;
}

li {
    font-size: 1.4rem;
}

p b {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    font-family: roboto-b, georgia;
}

a {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    font-family: roboto, georgia;
    cursor: pointer;
}

.footer-main {
    width: 100%;
    padding: 60px 0 100px;
    background-color: #141414;
}

.footer-sitemap {
    flex-basis: 100%;
    display: flex;
}

.footer-sitemap p, a {
    line-height: 30px;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
}

.footer-sitemap a:hover {
    opacity: 0.7;
}

.footer-sitemap ul:nth-child(1) {
    border-left: 4px solid var(--site-color-01);
    flex-basis: 240px;
    padding-left: 10px;
}


.footer-sitemap ul:nth-child(2) {
    flex-grow: 1;
}

.footer-sitemap ul:nth-child(2) li {
    clear: both;
    float: right;
}


.footer-sitemap ul li a {
    color: #fff;
    background: none;
}

.footer-sitemap ul li a:hover {
    color: #fff;
    background: none;
}

/* Mobil verzio*/

@media only screen and (max-width: 768px) {
    
    .header-nav {
        justify-content: space-around;
    }
    
    .form-popup {
        position: fixed;
        top: 60px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        box-sizing: border-box;
        display: block;
    }
    
    .form-container {
      max-width: 100vh;
    }
    
    .wrapper-main {
        width: 100%;
    }
    
    h1 {
      font-size: 3.3rem;  
    }
    
    .footer-sitemap {
        flex-wrap: wrap;
    }
    
    .footer-sitemap ul:nth-child(1) {
        border-left: none;
    }
    
    .footer-sitemap ul:nth-child(1), 
    .footer-sitemap ul:nth-child(2) {
        padding-left: 0;
    }
    
    .footer-sitemap ul:nth-child(1), 
    .footer-sitemap ul:nth-child(2) {
        flex-basis: 100%;
        text-align: center;
        padding-bottom: 40px;
    }
    
    .footer-sitemap p, a {
        padding: 0 20px;
    }
    
    .footer-sitemap ul:nth-child(2) li {
        float: none;
    }
}












