.limiter {
    width: 100%;
    margin: 0 auto;
}

.top_left{
    position: absolute;
    top: 2%;
    left: 1%;
    width: 100%;
    background: transparent;
}

.container_login{
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #ffffff;
    background: white;
}

/*-- iPhpne 6/7/8 --*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
.wrap_login{
    width: 80%;
    background: transparent;
    /*background: transparent;*/
    border-radius: 10px;
    overflow: hidden;
    padding: 25px 25px 25px 25px;

    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}
}

/*-- iPhpne 6/7/8 Plus --*/
@media only screen and (min-device-width : 414px) and (max-device-width : 736px){
.wrap_login{
    width: 80%;
    background: transparent;
    /*background: transparent;*/
    border-radius: 10px;
    overflow: hidden;
    padding: 25px 25px 25px 25px;

    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}
}

/*-- iPad --*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.wrap_login{
    width: 50%;
    background: transparent;
    /*background: transparent;*/
    border-radius: 10px;
    overflow: hidden;
    padding: 25px 25px 25px 25px;

    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}
}


@media only screen and (min-device-width : 1025px){
.wrap_login{
  width: 30%;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}
}

.login_form {
    width: 100%;
    background: white;
    color: white;
}

.login_form_title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 30px;
    color: #333333; 
    line-height: 1.2;
    text-align: center;
    
}

/*Strich zwischen den Elementen*/
.wrap_input{
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;  
    margin-bottom: 37px;
}

/* Input Textfeld */
.input {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #000000; 
  line-height: 1.2;
  display: block;

  width: 100%;
  height: 45px;
  border: none;
  background: transparent; 
  padding: 0 5px;
  outline: none;
}

.focus_input {
  position: absolute;
  display: block;
  color: transparent; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

/*-------BUTTON-------------------------*/
.container_login_form_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
    border: none;
    background: #ffffff;
    color: white;
}

.wrap_login_form_btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
    border: none;
    background: transparent;
    /*background: #696969;*/
}

.login_form_bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: transparent;
    /*background: #696969    
    /*background: #A9A9A9;*/
    background: -webkit-linear-grdient(#ffffff);
    background: -o-linear-gradient(#ffffff);
    background: -moz-linear-gradient(#ffffff);
    background: linear-gradient(#ffffff);*/
    top: 0;
    left: -100%;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login_form_btn {
    font-family: Poppins-Medium;
    font-size: 20px;
    background: #A9A9A9;
    color: #000000; 
    border: none;
    line-height: 1.2;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
}

@media only screen and (min-width:668px){
.text_sign{
    margin-top: 10px;
    font-family: Poppins-Medium;
    font-size: 13px;
    color: #000000;
}
    
.text_sign_in{
    font-family: Poppins-Medium;
    font-size: 13px;
    color: #8800ff;        
}    
}

@media only screen and (max-width:667px){
.text_sign{
    margin-top: 10px;
    font-family: Poppins-Medium;
    font-size: 13px;
    color: #000000;
}
    
.text_sign_in{
    font-family: Poppins-Medium;
    font-size: 13px;
    color: #8800ff;        
}      
}

.button{
    color: white;
    background: none;
    background-color: white;
    border-style: solid;
    border-color: white;
}

