.logCon {
    /*height: 100%;*/
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
}
.logCon>div {
    border-left: 1px solid #3a6e8c;
    border-top: 1px solid #3a6e8c;
    border-right: 3px solid #3a6e8c;
    border-bottom: 3px solid #3a6e8c;

    border-radius: 7px;
    padding: 10px;
    background: #e5e5e5;
}

.input-icon{
    position: absolute;
    left: 7px;
    top: calc(50% - 0.75em); /* Keep icon in center of input, regardless of the input height */
}
input{
    transition: all .75s ease-in-out;
    padding: 6px;
    padding-left: 25px;
    border: 1px solid #808080;
    border-radius: 5px;
    margin-bottom: 5px;
    z-index: 10000;
}
input:focus {
    outline: none !important;
    border: 1px solid red;
}

.input-wrapper{
    position: relative;
    margin-top: 10px;
}

.medBtn {
    margin-top: 5px;
    border-radius: 10px;
    background: #0f3b74;
    color: #fff;
    /*padding: 5px;*/
    width: 75%;
    cursor: pointer;
    font-size: 20px;
    text-shadow: .25px .25px #fff;
    height: 40px;
}

.msg {
    color: red;
    margin-bottom: 20px;
}