:root {
    --card_background:#f9f9f9;
    --textfield_border_color:#f6de64;
    --textfield_border_color_focus:black;
    --link_color:black;
}
body {
    background-image: url(../../assets/img/login_bg.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    overflow: scroll;
}

.card {
    background: var(--card_background) !important;
    opacity: 0.9;
}

.form-input {
    position: relative;
    padding: 0px;
    margin: 10px;
    margin-bottom: 20px;
}

.form-input .textfield {
    width: 100%;
    outline: none;
    border: 1px solid var(--textfield_border_color);
    border-radius: 7px;
    padding: 13px;
    transition: all .2s;
    background: none;
}

.form-input .input-label {
    position: absolute;
    top: 13px;
    left: 6px;
    transition: all 0.7s;
}

.textfield:focus {
    border: 2px solid var(--textfield_border_color_focus);
}

.textfield:focus~.input-label,
.textfield:not(:placeholder-shown).textfield:not(:focus)~.input-label {
    top: -12px;
    left: 8px;
    background: var(--card_background);
    padding-left: 3px;
    padding-right: 3px;
    font-size: 14px;
}

.form-submit {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;

}

.form button {
    width: 100%;
    transition: all .7s !important;
}

.form-content {
    margin: 10px;
    margin-top: 15px;
    padding: 0px;
}

.circle-button {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

a {
    text-decoration: none;
    color: var(--link_color);
    transition: all .4s !important;
}

@media (max-width: 767px) {
    .textfield {
        width: 200px;
    }
}

@media (min-width: 767px) {
    .textfield {
        width: 300px;
    }
}