body {
    background: #222222;
    color: #fff;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.90;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    align-content: center;
}

input[type='text'],
input[type='email'],
input[type='password'],
.form-control {
    height: 60px;
    background: #141414;
    color: #fff;
    box-shadow: inset 0 1px 8px #00f4cd, 0 0 1px 1px #00f4cd;
    border: none;
    padding-left: 10px;
    font-family: inherit;
    margin-top:35px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
.form-control:focus {
    background: #000;
    color: #ffffff;
    box-shadow: inset 0 1px 8px #00f4cd, 0 0 1px 1px #00f4cd;
    outline: none;
}

input.form-control::placeholder {
    color: #bbbbbb !important;
    opacity: 0.80 !important;
}

#togglePassword {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #00f4cd;
}

button[type='submit'] {
    background: #00f4cd;
    color: #000;
    padding: 10px 30px;
    border-radius: 12px;
    border-style: solid;
    border-color: transparent;
    cursor: pointer;
}

#logincontainer {
    padding: 30px;
    background: #191919;
    border-radius: 30px;
    text-align: center;
    margin-bottom:10px;
    margin-bottom:60px;
}

@media only screen and (max-width: 600px) {
    #availabilityButtons {
        display: grid;
    }

    #submitbutton {
        width: 100%;
    }

    #logincontainer {
        padding: 20px;
        border-radius: 0px;
    }
}
