﻿:root {
    --label-color: white;
}
body {
    background: #c8c8c8;
    _background: linear-gradient(180deg, #989898 0%, #828589 100%);
    background: linear-gradient(129deg, #6681a5 0%, #1d467d 100%)
}

.form-input-content {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}
.card {
    margin-bottom: 1.875rem;
    background: rgba(0,0,0,.5);
    transition: all .5s ease-in-out;
    position: relative;
    border: 1px solid rgba(0,0,0,.15);
    z-index: 0;
}

h1 {
    font-size: 2rem;
    color: var(--label-color);
}
h2 {
    font-size: 1.6rem;
    color: var(--label-color);
}

.form-floating {
    margin-bottom: 10px;
}
.form-floating label {
    display: none;
}

.form-input-content button {
    margin-top: 10px;
}

.form-label {
    color: var(--label-color);
}