.form-container{
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 2px 25px rgba(0,0,0,.1);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}

.info-container{
    background-color: #093f88;
    height: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 2px 25px rgba(0,0,0,.1);
}

.info-item {
    width: 100%;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #000;
}

.info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: #093f88;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    margin-right: 15px;
}

.info-item:hover i {
    background: #fff;
    color: #093f88;
}