html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.form-generate {
    width: 100%;
    max-width: 700px;
    padding: 15px;
    margin: auto;
}
.form-generate .checkbox {
    font-weight: 400;
}
.form-generate .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.form-generate .form-control:focus {
    z-index: 2;
}
.form-generate input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-generate input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.form-generate .next-button {
    width: 40px;
    height: 40px;
    border:none;
    margin: 40px 0 0;
}

.next-button {
    outline: none !important;
}

.next-button:disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='%23b5b5b5' viewBox='0 0 16 16' class='bi bi-arrow-right-circle-fill'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'%3E%3C/path%3E%3C/svg%3E") !important;
}

.next-button.next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='%230d6efd' viewBox='0 0 16 16' class='bi bi-arrow-right-circle-fill'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'%3E%3C/path%3E%3C/svg%3E");
}

.next-button.next:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='%230e61dc' viewBox='0 0 16 16' class='bi bi-arrow-right-circle-fill'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'%3E%3C/path%3E%3C/svg%3E");
}

.checkbox-item {
    border-radius: 5px;
    border: 2px solid transparent;
    padding: 20px 30px;
    cursor: pointer;
    margin: 5px;
}

.checkbox-item:hover {
    border-color: #eaeaea;
}

.checkbox-item.active {
    border: 2px solid #0d6efd;
    background: #FFF;
}

.checkbox-item.disabled {
    background: #efefef;
}

.checkbox-item.disabled:hover {
    border-color: #efefef !important;
}

.checkbox-item.active:hover {
    border-color: #0d99fd;
}

.checkbox-item .checkbox-item-content {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    line-height: 20px;
}

.checkbox-item-title,
.checkbox-item-title {
    display: block;
    text-align: left;
}
.checkbox-item-title {
    font-weight: bold;
}
.checkbox-item-description {
    color: #82878c;
    font-size: 13px;
}

.card {
    border-color: transparent;
}

input[type="text"]:read-only {
    border-color: transparent;
    padding: 15px;
}