﻿body {
}
.sign-box {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    width: 80%;
    margin-bottom: 2rem;
    padding: 1.5rem;
    box-shadow: 0 3px 6px #00000016;
    border-radius: 5px;
    border: 1px solid transparent;
    text-decoration: none;
}
.sign-box img {
    width: 3rem;
}
.sign-box p {
    margin-left: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #707070;
    margin-bottom: 0;
}
.sign-box:hover {
    border: 1px solid #29aae2;
}
.steps {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.stepDiv {
    display: flex;
    align-items: baseline;
}
.number {
    border: 1px solid #383838;
    border-radius: 50%;
    padding: .3rem;
    width: 30px;
    height: 30px;
    text-align: center;
}
.step {
    margin-left: 1rem;
}
.wrapper1 {
    width: 500px;
    margin: 1rem auto;
    text-align: left;
    background: #fff;
    box-shadow: 2px 2px 10px #cec7c7;
}
.visitedStep .number {
    border-color: #64be33;
    background-color: #64be33;
}
.visitedStep .number i {
    color: #fff;
    margin-top: 0.2rem;
}
.visitedStep .step {
    color: #9e9c9c;
}
.activeStep .number {
    border-color: #29aae2;
    color: #29aae2;
}
.activeStep .step {
    color: #29aae2;
}
.activeArrow {
    font-size: 1.3rem;
    color: #29aae2;
}
.wrapper2 {
    width: 90%;
    margin: 1rem auto;
    text-align: left;
    background: #fff;
    box-shadow: 2px 2px 10px #cec7c7;
}