html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.box{
    margin:10px 20px;
    padding:15px;
    border-radius:8px;
    border:2px solid #d3d1d1;
    box-shadow:0px 0px 3px 2px #ffffff;

}


html {
  position: relative;
  min-height: 100%;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/*
COLORS:

Light green: #7ed56f
Medium green: #55c57a
Dark green: #28b485

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   /* font-family: "Lato", sens-serif;*/
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
   /* color: #d3cfcf;*/
    padding: 30px;
   /* background-image: url(../css/Image/iot2.JPG);*/
}

.header {
    height: 20vh;
    background-image: url(~/css/Image/iot2.JPG);
    background-size: cover;
    background-position: top;
    position: relative;
}

.logo-box {
    position: absolute;
    top: 40px;
    left: 40px;
}

.logo {
    height: 120px;
}

.heading-primary {
    color: rgb(22, 245, 52);
    /*text-transform: uppercase;*/
    animation: moveInLeft;
    animation-duration: 3s;
}

.heading-primary-main {
    display: block;
    font-size: 50px;
    font-weight: 300;
    letter-spacing: 35px;
}

.heading-primary-sub {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 15px;
    text-align: center;
}

.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}




.btn1:link,
.btn1:visited {
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    position: relative;
}

.btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.btn1:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.btn1-white {
    background-color: #fff;
    text-align:center;
    color: #777;
}

.btn1-Orang {
    background-color: #ff6a00;
    text-align: center;
    color: #777;
}

.btn1::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn1-white::after {
    background-color: #fff;
}

.btn1-red::after{
    background-color:#258cfb;
}

.btn1:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}


.btn-animated {
    animation: movebuttom .5s ease-in-out .75s;
    animation-fill-mode: backwards;
}


@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        transform: translate(20px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}
