* {
    padding: 0;
    margin: 0;
}
body {
    background: #FFF5DE;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
.container {
    padding: 30px 0 0;
}
.h-100 {
    height: 100vh !important;
}
.wrapper {
    max-width: 500px;
    margin: 0 auto;
}
.form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e3e3e3;
    position: relative;
    margin-bottom: 60px;
}
.form-title {
    font-size: 25px;
    line-height: 35px;
    color: #c29345;
    font-weight: 600;
    padding: 0 30px;
}
.form-desc {
    padding: 10px 0 20px;
    color: rgba(0, 0, 0, 0.80);
}
.form-desc span {
    font-weight: 600;
}
.form-list {
    list-style: decimal;
}
.form-list li {
    padding-bottom: 10px;
}
.form-control, .form-control:focus {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 20px;
    color: #c29345 !important;
    font-weight: 600;
}
.btn-wrapper {
    padding-top: 20px;
}
.btn-wrapper a, .btn-wrapper a:hover, .btn-wrapper a:focus {
    background: #c29345;
    border-radius: 20px;
    font-size: 18px;
    line-height: 48px;
    color: #FFF;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    display: block;
    font-weight: 600;
    text-decoration: none;
}
.successMsg, .errorMsg {
	position: absolute;
	display: none;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}
.show .dropdown-menu, .form-label {
    display: block;
}
.bootstrap-select, .bootstrap-select .dropdown-menu li.selected {
    background: rgba(0, 0, 0, 0.05);
}
.bootstrap-select .dropdown-menu li {
    padding: 5px 10px;
}
.bootstrap-select .dropdown-menu li.selected a {
    outline: 0;
}
@media screen and (max-width: 768px) {
    .form-title {
        font-size: 20px;
        line-height: 30px;
    }
    .form-list {
        margin: 0 0 0 15px;
        padding: 0 15px;
    }
    .form-desc {
        padding: 10px 20px 20px;
    }
}