@import url('../main.css');

/* Header */

header{
    width: 100%;
    top: 0;
}

/* Main Content */

.main-content{
    background: var(--blue-pale-background);
    padding-bottom: 50px;
    min-height: calc(100vh - 80px);
}
.main-content p, .main-content ul{
    font-size: 14px;
    margin-top: 10px;
}
.main-content p > a{
    color: var(--blue-dark-background);
}
.main-content ul{
    font-size
}

/* Header */

.top-logo-container{
    justify-content: center;
    height: 100px;
}
.logo-box span{
    color: var(--blue-dark-background);
}

/* Progress Bar */

.progress-bar-container{
    padding: 20px 0;
}
.progress-bar-text-box{
    display: flex;
}
.progress-bar-text{
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #c7c7c7;
    text-align: center;
    position: relative;
}
.progress-bar-text::after{
    content: "";
    position: absolute;
    background-color: #c7c7c7;
    bottom: -27px;
    left: 48%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.progress-bar-text.active::after{
    content: "";
    position: absolute;
    bottom: -31px;
    left: 46%;
    background-color: #0070d6;
    border: 5px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 16px 0 rgba(21,21,24,.1);
}
.progress-bar-text.active{
    color: var(--blue-dark-background);
    opacity: 1;
}
.progress-bar-line{
    width: 67%;
    margin: 20px auto;
    height: 3px;
    background-color: #c7c7c7;
}
.progress-bar-line-inner{
    background-color: var(--blue-dark-background);
    height: 3px;
}

/* Warning Container */

.warning-container{
    padding: 20px;
    background-color: var(--blue-dark-background);
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* Form Container */

.form-title{
    font-size: 20px !important;
    font-weight: 600 !important;
}
.form-desc{
    font-size: 16px !important;
    font-weight: 300 !important;
    color: #c7c7c7 !important;
}
.form-container{
    background-color: white;
    padding: 30px 10%;
    border-radius: 5px;
}
form{
    padding-top: 20px;
    font-weight: 300;
    font-size: 14px;
}
.form-control{
    font-size: 14px;
}
.phone-input-container{
    display: flex;
    flex-direction: row;
}
.phone-input-container .phone-input-label{
    margin: 7px 10px 0 0;
    font-weight: 600;
}
.phone-input-container .form-control{
    vertical-align: middle;
}
.form-control::placeholder{
    opacity: .5;
}
.btn{
    padding: 5px 10px;
}
.section-title.bigger{
    font-size: 20px;
}

/* Logo Container */

.logo-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    opacity: 0.2;
    margin: 20px 0 20px 0;
}
.lock-box{
    background: url("../img/lock.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}
.lock-text{
    max-width: 350px;
    margin-top: 10px;
}


/* Responsive */

@media (max-width: 768px){
    .btn{
        width: 100%;
    }
}