*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    background-color: #eff5f8;
}

h2 {
    font-size: 3em;
    margin: 0px;
    margin-top: 0.45em;
    margin-bottom: 0.45em;
}

button {
    background-color: #001b44;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    letter-spacing: 0.21px;
    line-height: 16px;
    max-width: 255px;
    padding: 20px 52px;
    text-align: center;
    transition-duration: 0.15s;
    transition-property: background-color;
    transition-timing-function: linear;
    margin-top: 0.6em;
    float: right;
}

.input-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

label {
    color: #212121;
}

input {
    background-color: #e8eaed;
    border-radius: 2px;
    border-width: 0;
    font-size: 1em;
    height: 45px;
    line-height: 20px;
    margin:0;
    margin-top: 10px;
    max-width: 100%;
    padding: 8px 8px 8px 8px;
    transition-delay: 0s, 0s;
    transition-duration: 0.2s, 0.2s;
    transition-property: background-color, color;
    transition-timing-function: ease, ease;
    vertical-align: middle;
    width: 100%;
}

input:hover {
    background-color:moccasin;
}

.card {
    background-color: #fff;
    border: 1px solid #eceff1;
    border-radius: 8px;
    box-shadow: rgba(60,64,67,0.3) 0 1px 2px 0, rgba(60,64,67,0.15) 0 1px 3px 1px;
    margin: 2%;
    margin-top: 80px;
    padding: 20px;
    width: 46%;
    overflow: hidden;
    position: relative;
    float: left;
}

.card::after {
    content: " ";
    display: block;
    clear: both;
}

.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}

#msg {
    visibility: hidden;
    margin-top: 20px;
    font-weight: 700;
    height: 1.2em;
    font-size: 1.2em;
}

#msg.success,
#msg.error {
    visibility:visible;
}

#msg.success {
    color: #001b44;
}

#msg.error {
    color: red;
}