.bsmform {
    display: block;
    position: relative;
    width: auto;
    min-width: 120px;
    max-width: 320px;
    height: auto;
    margin: 10px auto;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
}

.bsmform * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.bsmform .bsmform-box {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.bsmform .bsmform-box .bsmform-logo {
    display: inline-block;
    width: 79px;
    height: 100px;
    margin: 0;
    padding: 0;
    background-image: url(icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bsmform .bsmform-box .bsmform-title {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px 0;
    padding: 0;
    color: #DE2A32;
    font-size: 24px;
    border: none;
}

.bsmform .bsmform-box .bsmform-subtitle {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 5px 0 55px;
    padding: 0;
    color: rgba(73, 72, 72, 0.946);
    font-size: 1rem;
    border: none;
}

.bsmform .bsmform-box .bsmform-field {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 57px;
    margin: 0 0 25px;
    padding: 0;
    border: none;
    border-bottom: 2px solid #d9d9d9;
}

.bsmform .bsmform-box .bsmform-field:before,
.bsmform .bsmform-box .bsmform-field:after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #3474d4;
    transition: 0.4s;
    border: none;
}

.bsmform .bsmform-box .bsmform-field:before {
    right: 50%;
}

.bsmform .bsmform-box .bsmform-field:after {
    left: 50%;
}

.bsmform .bsmform-box .bsmform-field.focus:before,
.bsmform .bsmform-box .bsmform-field.focus:after {
    width: 50%;
}

.bsmform .bsmform-box .bsmform-field label {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: 35px;
    top: 5px;
    width: auto;
    height: 45px;
    margin: 0;
    padding: 0;
    line-height: 45px;
    transform: translateY(0);
    color: #999;
    font-size: 14px;
    transition: 0.3s;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    border: none;
}

.bsmform .bsmform-box .bsmform-field.focus label {
    top: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}

.bsmform .bsmform-box .bsmform-field i {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 5px;
    width: 25px;
    height: 45px;
    margin: 0;
    padding: 0;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    color: #d9d9d9;
}

.bsmform .bsmform-box .bsmform-field.focus i {
    color: #3474d4;
}

.bsmform .bsmform-box .bsmform-field input {
    display: inline-block;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 45px;
    margin: 5px 0;
    padding: 0 35px;
    line-height: 45px;
    font-size: 1rem;
    color: #555;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
}

.bsmform .bsmform-box .bsmform-field input:focus,
.bsmform .bsmform-box .bsmform-field input:active,
.bsmform .bsmform-box .bsmform-field input:active:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.bsmform .bsmform-box .bsmform-error {
    display: none;
    width: 100%;
    height: auto;
    margin: -20px 0 0;
    padding: 0 0 20px;
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.bsmform .bsmform-box .bsmform-button {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 10px 0;
    padding: 0;
}

.bsmform .bsmform-box .bsmform-button input[type="submit"] {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    border-radius: 15px;
    border: none;
    outline: none;
    box-shadow: none;
    background-image: linear-gradient(to right, #848484, #BDBDBD, #848484);
    background-size: 200%;
    transition: 0.5s;
    text-align: center;
}

.bsmform .bsmform-box .bsmform-button input[type="submit"]:hover,
.bsmform .bsmform-box .bsmform-button input[type="submit"]:focus,
.bsmform .bsmform-box .bsmform-button input[type="submit"]:active,
.bsmform .bsmform-box .bsmform-button input[type="submit"]:active:hover,
.bsmform .bsmform-box .bsmform-button input[type="submit"]:active:focus {
    background-position: right;
    border: none;
    outline: none;
    box-shadow: none;
}

.bsmform .bsmform-box .bsmform-checkbox {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 5px 0 15px;
    padding: 0;
    font-size: 14px;
}

.bsmform .bsmform-box .bsmform-checkbox .fcerror {
    margin-bottom: 10px;
    text-align: left;
}

.bsmform-response {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    margin: 15px 0;
    padding: 10px;
    color: rgba(73, 72, 72, 0.946);
    font-size: 12px;
    border: none;
    font-weight: bold;
}

.js-fcerror {
    color: #ff0000;
}

.js-bsmform-response-fcerfolg {
    color: #015a3d;
}