* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    height: 100%;
}

a {
    color: #fff;
    text-decoration: none;
}

.container-fluid {
    overflow: hidden;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.title {
    font-size: 2.2rem;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    font-weight: bold;
}

.login {
    margin-top: 100px;
}

.input-field {
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #f0f0f0;
    margin: 10px 0;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #ffffff;
    font-size: 1.5rem;
}

.input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.input-field input:placeholder-shown {
    color: #aaa;
    font-weight: 500;
}

#loginButton {
    margin-top: 30px;
}

.btn-login {
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    background-color: #4d4197;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px, 0;
    transition: all 0.5s;
    display: inline-block;
}

.btn-login:hover {
    background-color: #6a5ebe;
}

#embarkLogo {
    width: 100%;
    padding: 50px;
}

#embarkLogo img {
    width: 60%;
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

::selection{  
    background-color: #160022;
    color: #ffcc00;
}  

.alert {
    margin: 30px;
}

#login_footer {
    text-align: center;
    margin: 50px 0;
}