/* Űrlap */
.container {
  max-width: 25%;
  margin: 0px auto;
  padding: 30px 50px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid black;
  margin-bottom: 70px;
  margin-top: 70px;
  border-radius: 10px;
}

.gomb {
  font-size: 15px;
  color: rgb(76,88,98);
  font-family: 'roboto';
  background-color: white;
  border: 0px;
  padding: 6px 15px;
}

.gomb:hover {
  color: black;
  padding: 6px 15px;
}

.gomb2 {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: white;
  font-family: 'inter';
  border-radius: 15px;
  border: 0px;
  padding: 6px 15px;
  background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
  margin-bottom: 20px;
  transition: background-position 0.3s, box-shadow 0.3s;
}

.gomb2:hover {
  background-position: right center;
  background-size: 200% auto;
  padding: 6px 15px;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
  0% {
      box-shadow: 0 0 0 0 #05bada66;
  }
  70% {
      box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }
  100% {
      box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}


.csoport7{
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}


.vmi{
  display: flex;
  justify-content: flex-start;
  gap:5px;
  align-items: center;
  padding-left: 5px;
}



.button {
  text-align: center;
}
.button2{
  text-align: center;
  margin-top: 20px;
}

.form-group {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  align-self: center;
}

.icon {
  height: 23px;
}


.iconjelszo {
  height: 23px;
  cursor: pointer;
}

.kovetelmeny{
  color: rgb(41,0,255);
  font-family: 'inter';
  margin-bottom: 10px;
  font-weight: bold;
}
.info{
  font-family: 'roboto';
  color: rgb(76,88,98);
  font-weight: 200;
}



.text_container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 0px;
}

.text {
  margin-bottom: 10px;
  color: rgb(41,0,255);
  font-size: 30px;
  font-weight: bold;
  font-family: 'inter';
}

.inputszoveg {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'roboto';
  color: rgb(76,88,98);
}

.inputszovegjelszo {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'roboto';
  color: rgb(76,88,98);
  display: flex;
  justify-content: flex-start;
  gap: 10px;

}

.csoport1, .csoport2, .csoport3, .csoport4 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}



.csoport11, .csoport22, .csoport33, .csoport44 {
  display: flex;
  flex-direction: column;
}
.form-groupradio{
  display: flex;
  justify-content: flex-start;
  gap:10px;
  align-self: center;
  align-items: center;
}
.form-group1 {
  margin-bottom: 30px;
  display: flex;
}

.input_part1, .input_part2, .input_part3, .input_part {
  line-height: 28px;
  border: 2px solid transparent;
  border-bottom-color: #777;
  padding: .2rem 0;
  outline: none;
  background-color: transparent;
  color: #0d0c22;
  transition: .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.input_part1, .input_part2, .input_part3 {
  width: 100%;
}

.input_part1:focus, .input_part1:hover,
.input_part2:focus, .input_part2:hover,
.input_part3:focus, .input_part3:hover,
.input_part:focus, .input_part:hover {
  outline: none;
  padding: .2rem 1rem;
  border-radius: 1rem;
  border-color: #7a9cc6;
}

.input_part::placeholder, .input_part1::placeholder, .input_part2::placeholder, .input_part3::placeholder {
  color: #777;
}

.input_part:focus::placeholder, .input_part1:focus::placeholder, .input_part2:focus::placeholder, .input_part3:focus::placeholder {
  opacity: 0;
  transition: opacity .3s;
}

.radio-inputs_part {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  background-color: #EEE;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 300px;
  font-size: 14px;
}

.radio-inputs_part .radio {
  flex: 1 1 auto;
  text-align: center;
}

.radio-inputs_part .radio input {
  display: none;
}

.radio-inputs_part .radio .tobbnapos {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  padding: .5rem 0;
  color: rgba(51, 65, 85, 1);
  transition: all .15s ease-in-out;
}

.radio-inputs_part .radio input:checked + .tobbnapos {
  background-color: #fff;
  font-weight: 600;
}

input[type="radio"] {
  display: none;
}

label {
  position: relative;
  color: rgb(41,0,255);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  border: 3px solid rgb(41,0,255);
  padding: 0.5em 1em;
  border-radius: 0.5em;
  transition: background-color 0.3s, color 0.3s;
}

label::before {
  content: "";
  height: 1em;
  width: 1em;
  border: 3px solid rgb(41,0,255);
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}

input[type="radio"]:checked + label::before {
  height: 0.5em;
  width: 0.5em;
  border: 0.65em solid #ffffff;
  background-color: rgb(41,0,255);
}

input[type="radio"]:checked + label {
  background-color: rgb(41,0,255);
  color: #ffffff;
}

.text-danger {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: -15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.text-2 {
  font-family: Arial, Helvetica, sans-serif;
  color: #5B42F3;
}

/* Űrlap */

/* Hibák */
.notification {
  padding: 10px;
  margin-top: 10px;
  text-align: center;
}

.success{
  color:green;
  font-weight: bold;
  font-family: 'roboto';
  margin-bottom: 15px;
  text-align: center;
}

.error {
  color: #D8000C;
  font-family: 'roboto';
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

.error2 {
  color: #D8000C;
  font-family: 'roboto';
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
  margin-top: 15px;
}

/* Hibák */

/* Alap */
body, html {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Alap */

/* Footer */
.footer{
  height: 300px;
  background-color: rgb(239,239,249);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  color: rgb(84,51,255);
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 67%;
}

.szervezes, .informaciok, .szabalyok{
  display: flex;
  flex-direction: column;
  gap:10px;
  font-size: 20px; 
}

.szervezes1, .informaciok1, .szabalyok1 {
  margin-bottom: 10px;
  font-weight: bold;
}
.szabalyok{
  padding-right: 60px;
}

.rolunk {
  height: 30px;
  background-color: rgb(239,239,249);
  width: 100%;
  text-align: center;
  color: rgb(41,0,255);
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
}

.nagy_logo {
  height: 60px;
}

.link {
  text-decoration: none;
  color: rgb(87,93,98);
  font-family: 'Roboto', sans-serif;
}

.logo1 {
  font-family: 'inter';
  font-weight: bold;
}

.szervezes1, .informaciok1, .szabalyok1 {
  color: rgb(41,0,255);
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
}

.szoveg1 span {
  color: rgb(84,51,255);
}

.link:hover {
  text-decoration: underline;
  color: rgb(84,51,255);
}

/* Footer */

/* Header */
.hatterkep {
  width: 100%;
  background-image: url('music.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.header_szoveg {
  position: absolute;
  top: 100px;
  left: 40px;
  font-size: 60px;
  color: white;
  font-family: 'inter';
  font-weight: bold;
}

.header_szoveg span {
  color: rgb(0,255,255);
}

.header_logo {
  height: 30px;
  width: auto;
  cursor: pointer;
}

.header_weboldal {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 40px;
  font-size: 30px;
  color: white;
  font-family: 'inter';
  font-weight: bold;
  top:0px;
}


/* Header */


.szoveg1{
  margin-top: 0px;
  padding-top: 0px;
}