@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --header-bg-color: #efefef;
    --text-color: #111;
    --main-color: #FF4136;
}

* {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

img {
    max-width: 100%;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

.btn-primary {
    background-color: var(--main-color);
    border: none;
}

#header {
    background-color: var(--main-color);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 16px;
    margin-bottom: 0;
}

.header_image_logo img {
    border-radius: 100%;
    border: #fff solid 3px;
    box-shadow: rgba(0,0,0,.3) 0 0 10px;
}

.header_subtitle {
    font-size: 12px;
    margin-bottom: 0;
}

.header_title {
    margin-bottom: 0;
    line-height: 100%;
}

#header hr {
    background-color: rgba(0,0,0,.3);
    height: 1px;
    border: none;
}

.header_socialicons {
    margin-bottom: 0;
}

.header_socialicons a {
    font-size: 20px;
    margin-right: 15px;
    color: var(--text-color)
}

.step {
    padding: 16px;
}

.step_title {
    font-weight: 700;
    margin-top: 32px;
}

.question {
    margin-top: 32px;
}

.question label{
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    border: none;
    border-bottom: var(--header-bg-color) solid 1px;
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
}

#footer {
    margin-top: 64px;
    font-size: 12px;
}

#floating_whatsapp_btn {
    position: fixed;
    bottom: 0px;
    right: 16px;
    float: right;
}

#floating_whatsapp_btn a {
    display: inline-block;
    background-color: #34af23;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    border: #fff solid 2px;
    box-shadow: rgba(0,0,0,.2) 0 0 6px;
}

#floating_whatsapp_btn i {
    color: #fff;
}

#steps .success {
    margin-top: 64px;
    margin-bottom: 64px;
}

#steps .success .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}