#admin {
    height: 100vh;
    background: url("../images/background.jpg") center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    color: #000;
}

#logo {
    padding: 50px 0;
}

#logo img {
    display: block;
    margin: 0 auto;
}

.alert,  #container {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.5);
    box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.5);
}

.alert {
    line-height: 50px;
    margin-bottom: 40px;
    padding: 10px 20px;
    text-align: center;
    position: relative;
}
.alert  .close {
    color: #AD2327;
    top: -15px;
    right: -15px;
    opacity: 1;
    font-size: 24px;
    text-transform: uppercase;
}

#container h1 {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 60px;
    font-size: 36px;
}

#container form {
    padding: 20px;
}

#container form .group {
    display: flex;
    flex-flow: row nowrap;
    justify-content:flex-start;
    clear: both;
    height: 50px;
    padding: 5px 0;
}

#container form .group.reverse {
    flex-flow: row-reverse;
}
#container form .group input[type="checkbox"] {
    flex: 1 1 30px;
    max-width: 30px;
    order: 1;
    width: 30px;
    height: 30px;
    margin: 5px 0;
}

#container form label {
    flex: 1 1 calc(100% - 30px);
    max-width: calc(100% - 30px);
    order: 0;
    text-align: left;
    line-height: 40px;
    padding: 0 10px;
}

#container form button {
    display: block;
    margin: 20px auto;
    width: 150px;
    background: #AD2327;
    border: 2px solid #AD2327;
    color: #fff;
    padding: 0;
    line-height: 40px;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    text-transform: uppercase;
}
#container form button:hover {
    background: #fff;
    color: #AD2327;
}

#container form input {
    order: 0;
    flex: 1 1 calc(100% - 40px);
    max-width: calc(100% - 40px);
    line-height: 40px;
    background: #fff;
    border: none;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
#container form input:focus {
    outline: none;
}

#container form .group .input-group {
    display: flex;
    justify-content: flex-start;
    flex-flow: nowrap row;
    flex: 1 1 100%;
    width: 100%;
}

#container form .group .input-group .input-group-addon {
    flex: 1 1 40px;
    max-width: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
}

#container p {
    text-align: center;
}

#container p a {
    color: #000;
}

#container p a:hover {
    color: #AD2327;
}
