p{
    margin-bottom: 0;
}

.checkbox {
    cursor: default;
}

.login-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.2%;
}

.login-container .control{
    width: 55%;
}

.popover__wrapper {
    position: relative;
    display: inline-block;
    margin-left: 3px;
}
.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50px;
    background-color: #0066c8;
    padding: 1.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    max-width: 330px;
    min-width: 200px;
    color: #fff;
    margin-left: -48px;
}
.popover__content:before {
    position: absolute;
    z-index: -1;
    content: "";
    right: calc(70% - 5px);
    top: -8px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #0066c8 transparent;
    color: #fff;
}
.popover__wrapper:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
}
.popover__message {
    text-align: center;
}

.material-textfield {
    position: relative;
}
.material-textfield > label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: gray;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: 0.1s ease-out;
    transform-origin: left top;
    pointer-events: none;
}
.material-textfield > input {
    font-size: large;
    outline: none;
    border: 1px solid gray;
    padding: 0.8rem 0.7rem;
    color: gray;
    transition: 0.1s ease-out;
    position: relative;
}
.material-textfield > input:focus {
    border-bottom-color: green;
    border-bottom-width: 2px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.material-textfield > input:focus + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
}
.material-textfield > input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
}

.material-textfield > input:-webkit-autofill + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
}

@media only screen and (max-width: 768px){
    .login-container{
        display: block;
    }
    .login-container .control{
        width: 100%;
    }
}