.input {
  font-size: 16px;
  line-height: 1.2;
  color: #333333;

  display: block;
  background: #fff;
  height: 50px;
  width:100%;
  border-radius: 25px;
  padding: 0 30px 0 53px;
}

.wrap-input {
  position: relative;
  width: 100%;
  z-index: 1;
}

.focus-input {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(0,91,234, 0.6);
}

.input:focus + .focus-input {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

.symbol-input {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;

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

.input:focus + .focus-input + .symbol-input {
  color: #ffbf00;
  padding-left: 23px;
}

.container-login-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login-form-btn {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;

  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #222222;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

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

  position: relative;
  z-index: 1;
}

.login-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  top: 0;
  left: 0;
  background: #005bea;
  background: -webkit-linear-gradient(left, #005bea, #00c6fb);
  background: -o-linear-gradient(left, #005bea, #00c6fb);
  background: -moz-linear-gradient(left, #005bea, #00c6fb);
  background: linear-gradient(left, #005bea, #00c6fb);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.login-form-btn:hover {
  background: transparent;
  color: #ffbf00;
}

.login-form-btn:hover:before {
  opacity: 1;
}

.formPad {
  height:50px;
}


/* Karty twoje dane itd na koncie */

.accCardHeaderTab {
  background-color: black;
  text-decoration: none !important;
border-style: solid;
    border-color: white;
    border-width: 2px;
}

.accCardHeaderTab:hover {
  background-color: #ffbf00;
  transition: 0.5s;
border-style: solid;
    border-color: black;
    border-width: 2px;

}

.accCardHeaderText {
  text-align: left !important;
  font-size: 24px;
    color: white;
    font-weight: 900;
    text-shadow: 0 0 6px #804d00, 0 0 6px #804d00;
  text-decoration: none !important;
}

.accCardHeaderTab:hover .accCardHeaderText {
  color: black;
  transition: 0.5s;

}

.accCardContent {
  
}

.cardOpacity{
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0.5;
}

.yourData{
  text-align: center;
  border-bottom-style: dotted; 
  border-bottom-color: black; 
  border-bottom-width: 3px;
  padding-bottom: 15px;
  padding-top: 15px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}



@media screen and (max-width: 500px) {
    .formPad {
        height: 5px;
    }

    .card {
	margin-left: 0px !important;
	margin-right: 0px !important;
    }
}


