/* For devices smaller than 400px: */
body {
    background-image: url('../img/index_background_smartphone.jpg');
    background-size: cover;
    background-position-x: center;
}

/* For devices 400px and larger: */
@media only screen and (min-device-width: 400px) {
    body {
        background-image: url("../img/index_background.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

/* For devices smaller than 400px: */
h1 {
    font-size: 32px !important;
}

/* For devices 400px and larger: */
@media only screen and (min-device-width: 400px) {
    h1 {
        font-size: 40px !important;
    }
}

canvas{
    margin-left: 30px;
}

.btn{
    background-color: rgba(0, 0, 0 ,0.45);
}

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
    font-family: OpenSans-Regular;
    src: url('../fonts/OpenSans/OpenSans-Regular.ttf'); 
}


@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Maven Pro", sans-serif;
}
.wrapper {
  min-height: inherit;
}
.myColor {
  background-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgb(100, 100, 100) 150%);
}
.myShadow {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
.myBtn {
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  background-image: linear-gradient(to right, rgb(100, 100, 100) 0%, rgb(0, 0, 0) 100%);
  border: none;
}
.myBtn:hover {
  background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(100, 100, 100) 100%);
}
.myHr {
  height: 2px;
  border-radius: 100px;
}
.myLinkBtn {
  border-radius: 100px;
  width: 50%;
  border: 2px solid #fff;
}
@media (max-width: 720px) {
  .wrapper {
    margin: 2px;
  }
}

form .indicator{
  height: 10px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
form .indicator span{
  position: relative;
  height: 100%;
  width: 100%;
  background: lightgrey;
  border-radius: 5px;
}
form .indicator span:nth-child(2){
  margin: 0 3px;
}
form .indicator span.verystrong{
  margin-left: 3px;
}
form .indicator span.active:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.indicator span.weak:before{
  background-color: #ff4757;
}
.indicator span.medium:before{
  background-color: orange;
}
.indicator span.strong:before{
  background-color: #99ff99;
}
.indicator span.verystrong:before{
  background-color: #23ad5c;
}


form .indicator_2{
  height: 10px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
form .indicator_2 span{
  position: relative;
  height: 100%;
  width: 100%;
  background: lightgrey;
  border-radius: 5px;
}
form .indicator_2 span:nth-child(2){
  margin: 0 3px;
}
form .indicator_2 span.verystrong_2{
  margin-left: 3px;
}
form .indicator_2 span.active:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.indicator_2 span.weak_2:before{
  background-color: #ff4757;
}
.indicator_2 span.medium_2:before{
  background-color: orange;
}
.indicator_2 span.strong_2:before{
  background-color: #99ff99;
}
.indicator_2 span.verystrong_2:before{
  background-color: #23ad5c;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-code{
  width: 35px;
  height: 45px;
  font-size: 35px;
  text-align: center;
  border-radius: 17px;
  border: 1px solid #ced4da;
  margin: 0 auto;
}
.input-code:focus{
  border-radius: 17px;
  box-shadow: 0 0 5px rgba(128, 189, 255, 1);
  border: 1px solid rgba(128, 189, 255, 1);
  outline: none;
  color: transparent;
  text-shadow: 0 0 0 black;
}