/* Header */
.header__navbar--name {
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
    padding: 10px 0;
}

/* Main */
.main {
    position: relative;
}

.main__fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-image: url(../img/bg-seccity.jpg);
    background-attachment: fixed;
}

/* Main login */
.main__login {
    display: flex;
    justify-content: center;
}

.main__login--wrapper {
    background-color: white;
    width: 500px;
    margin: 50px 0;
    border-radius: 10px;
    font-size: 15px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.main__login--title {
    font-size: 22px;
    background-color: aliceblue;
    line-height: 25px;
    margin: 0;
    padding: 10px;
    text-align: center;
}

.login--close::after {
    content: 'x';
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 10px 15px;
    color: #999;
    cursor: pointer;
}

.login--close:hover::after {
    color: black;
}

.main__login--content {
    padding: 20px 25px;
}

.login__form--input {
    margin: 15px;
}

.login__form--input > input {
    display: block;
    padding: 8px 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: .5px;
    outline: none;
}

.login__form--input > input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 14px;
}

.login__form--input > input:focus {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.form__input--submit {
    padding: 8px;
    margin-top: 20px;
    color: white;
    width: 100%;
    background-color: #00b14f;
    border: none;
    opacity: 0.8;
    outline: none;
    border-radius: 5px;
}

.form__input--submit:hover {
    opacity: 1;
}

.main__login--note {
    text-align: center;
    margin-bottom: 20px;
}
.alert {
    padding: 6px;
}
.alert > ul {
    list-style: none;
}