.roboto-font {
    font-family: "Roboto", sans-serif;
}

.body-bg-color {
    background-color: #36384D;
}

.color-blue {
    color: #242742;
}

.title {
    font-weight: bold;
    line-height: 100%;
    font-size: 40px;
}

.sub-title,
.list-items {
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
}

ul.list-items {
    padding: 0px;
    margin: 0px;
}

.list-items li {
    list-style-type: none;
    background-image: url(../images/icon-list.svg);
    background-repeat: no-repeat;
    padding-left: 32px;
    padding-bottom: 4px;
}

.email-label {
    font-size: 12px;
    font-weight: bold;
    line-height: 150%;
}

.validation-label {
    font-size: 12px;
    font-weight: bold;
}

#userEmail.form-control {
    padding: 16px 24px;
    color: #949494;
    border: 1px solid #949494;
}

#userEmail::placeholder {
    color: #949494;
}

#formSubmit:hover, #formSubmit:focus, .success-btn:hover, .success-btn:focus {
    background-image: linear-gradient(to right, rgba(255, 106, 58, 100), rgba(255, 82, 123, 100));
}

.submitBtn {
    background-color: #242742;
    color: #fff;
    padding: 16px 48px;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
}

.rounded-sm-5 {
    border-radius: 2rem;
}

.success-title {
    color: #242742;
    font-size: 40px;
    font-weight: bold;
    line-height: 100%;
}

.success-message {
    color: #242742;
}

.success-btn {
    background-color: #242742;
}

@media (max-width: 767px) {
    .rounded-sm-5 {
        border-radius: 0;
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 56px;
    }

    .success-title {
        font-size: 56px;
    }
}