.progress {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
}

.progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}

/*
*
* ==========================================
* FOR DEMO PURPOSE
* ==========================================
*
*/

body {
  background: #D5D5D5;
  background: -webkit-linear-gradient(to right, #A8E7E9, #D5D5D5);
  background: linear-gradient(to right, #A8E7E9, #D5D5D5);
  min-height: 100vh;
}

header{
  top: 50px;
}

.rounded-lg {
  border-radius: 1rem;
}

.text-gray {
  color: #aaa;
}

div.h4 {
  line-height: 1rem;
}

  /*
*
* ==========================================
* Button
* ==========================================
*
*/
.btn{
  color: #7a02fd;
  font-family: 'Fugaz One', cursive;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 25px;
  border: 1px solid #7a02fd;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.btn:hover{
  color: #fff;
  box-shadow: 0 0 20px -5px #000;
  transform: scale(1.05);
}
.btn:after{
  content: '';
  background-color: #7a02fd;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  transform: translate(-100%, 0) rotate(10deg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.btn:hover:after{ transform: translate(0) rotate(0); }

.btn.blue{
color: #1B9CFC;
border-color: #1B9CFC;
}
.btn.blue:after{ background: #1B9CFC; }
.btn.blue:hover{ color: #fff; }
@media only screen and (max-width: 767px){
  .btn{ margin-bottom: 20px; }
}
.btn.red{
color: #ff3838;
border-color: #ff3838;
}
.btn.red:after{ background: #ff3838; }
.btn.red:hover{ color: #fff; }

  /*
*
* ==========================================
* Log
* ==========================================
*
*/

.box input[type="text"],
.box input[type="password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 10px 10px;
    width: 500px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s
}
.box input[type="text"]:focus,
.box input[type="password"]:focus {
  width: 550px;
  border-color: #2ecc71
}

.box input[type="submit"] {
  border: 0;
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #2ecc71;
  padding: 10px 40px;
  outline: none;
  color: white;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer
}

.box input[type="submit"]:hover {
  background: #2ecc71
}

@media only screen and (min-device-width: 320px) and (max-device-width: 550px) {
    .box input[type="text"],
    .box input[type="password"] {
        width: 200px;
    }
    .box input[type="text"]:focus,
    .box input[type="password"]:focus {
        width: 250px;
        border-color: #2ecc71
    }
}