html {
    min-height: 100%;
    min-width: 100%;
    position: relative;
}

body { 
    /* The image used */
    background-image: url("/static/img/stadium-background.webp");

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


input.form-control:focus {
  box-shadow: none;
}

input.form-control::placeholder {
    color: #fff;
}

.form-container {
    max-width: 500px;
    padding: 3em 4em 0 4em;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

.logo {
    padding: 20px 0;
    text-align: center;
}

.field-group {
    height: 50px;
    border: none;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    padding: 0 10px 2px 0;
    display: flex;
    vertical-align: baseline;
    color: #fff;
}

.field-group span {
    width: 12%;
    line-height: 46px;
    text-align: right;
    top: 0;
}

.field-group .login-field {
    width: 100%;
}

.field-group .login-field input {
    width: 100%;
    height: 100%;
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    border: none;
    padding: 10px 0 10px 15px;
    background-color: transparent;
}

.submit-form {
    height: 50px;
    border-radius: 25px;
    width: 100%;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.error-msg {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
}