.button-bg {
    background-color: rgb(28, 35, 50);
    /* background-color: #062960; */
    box-shadow: 0 0 0 1px black;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    transition: .2s;
}

.button-bg:hover {
    background-color: rgb(0, 191, 255);
    color: black;
    /* background-color: #093d8d; */
}

.button-bg a {
    text-align: center;
    display: flex;
    margin: auto;
    color: white;
    font-weight: 400;
    width: 100%;
    height: 100%;
}

.button-bg a p {
    display: flex;
    margin: auto;
}

.button-bg:hover a,
.button-bg:hover p {
    color: black;
}

.inputfield {
    background-color: #0E2949;
    box-shadow: 0 0 0 1px black;
    border-width: 1px 1px 5px 1px;
    border-radius: 15px;
}

.inputfield::placeholder {
    color: #ffffff82;
    font-style: italic;
}

.inputfield:focus {
    outline: none;
}