.container-1{
  height: 100%;
  width: 60em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-box-1{
  padding: 10px;
  background: #ffffff;
  border-radius: 1em;
}

.inner-box-1-1{
  padding: 5px;
  background: #ffffff;
  border-radius: 1em;
}

.inner-box-2{
  display: flex;
  padding: 10px;
}

.inner-box-3{
  display: flex;
  padding: 10px;
  flex-direction: column;
}

.inner-column-1{
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: right;
}
.inner-column-2{
  flex: 1;
  padding-top: 5%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.box-2{
  flex: 3;
  height: 60%;
  align-items: stretch;  
}

h2 {
  color: #111; font-family: 'Helvetica Neue', sans-serif; font-size: 2.5em; font-weight: bold; letter-spacing: -1px; line-height: 2; text-align: center;
}

.body-bg {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: lightgrey; /* Zmenené na lightgrey */
}

.row-center {
  padding-top: 12%;
}
.login-box {
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 1em;
}
/*------------------------------------------------------------------------------------------------------*/

@media(max-width:1000px) {
  .container-1{
    height: 70%;
    width: 70%;
    display: flex;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    overflow: unset;
  }

  .inner-box-2{
    display: flex;
    padding: 10px;
    flex-direction: column;
  }

  .inner-column-1{
    justify-content: center;
  }

  .inner-column-2{
    justify-content: center;
  }

  .login-box {
    background-color: transparent;
  }
}

@media(max-width:700px) {

  .container-1{
    height: 50%;
    width: 100%;
    display: flex;
    max-height: 100%;
    align-items: center;
    justify-content: center;
  }
  
  h2 {
    color: #111; font-family: 'Helvetica Neue', sans-serif; font-size: 2em; font-weight: bold; letter-spacing: -1px; line-height: 2; text-align: center;
  }

  .login-box {
    border-radius: 1em;
    width: inherit;
    height: 40%;
    background: #ffffff;
  }

}