body{ 
    margin-top:40px;
	background-image: url("../images/doli-bg.jpg");
	background-size:cover;
}

@media (max-width: 500px) {
    body {
        background-image: url("../images/flowers.png");
		background-size:cover;
    }
}

/*
.form-control {
    border:none;
	outline: none;
    border-bottom: 1px solid #1890ff;
    padding: 5px 10px;
    
}
.form-control:focus {
  border-color: green;
  box-shadow: none;
}

.stepwizard-step p {
    margin-top: 10px;
}
*/

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
  width: 30px;
  height: 30px;
  background:#FFC9CA;
  color:#333;
  border:1px solid #FFC9CA;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}

.btn-circle:hover{
  background:#FFC9CA;
  color:black;
  border:none;
}

.nextBtn {
  background-color: #FFB8BA;
  background-image: linear-gradient(1deg, #FFB8BA, #FFE1E2 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  color: #000;
  font-size: 12pt;
/*  font-weight: bold;*/
  padding: 6px 30px;
  transition: background-color .2s,background-position .2s;
}

.nextBtn:active, .nextBtn:focus {
  outline: none;
}

.nextBtn:hover {
  color: #000;
  background-position: -20px -20px;
}

.nextBtn:focus:not(:active) {
  color: #000;
}

/*
.nextBtn{
  background-image:linear-gradient(to right, #FFB8BA , #FFC9CA , #FFD7D8, #FFD7D8, #FFE1E2);
  color:#333;
  border:none;
  border-radius:30%;
}

.nextBtn:hover{
  color: black;
  transform: scale(1.05);
}
*/