body {
    background-color: #fafafa;
}

.mat-elevation-z1 {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}

/** Header / Nav **/
.navbar {
    background-color: #3a9dc0 !important;
    color: white !important;
}

.nav-link {
    color: white !important;
}

/** Mat Card **/
.card-container {
    display: flex;
    justify-content: center;
}

.mat-card {
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
    display: block;
    position: relative;
    padding: 2em;
    border-radius: 4px;
    background-color: white;
}

/** Login View **/

.login-container {
    display: flex;
    max-width: 800px;
}

.mat-card > form {
    width: 300px;
}

.congress-logo {
    display: flex;
    max-width: 50%;
    padding-right: 1em;
    align-items: flex-start;
}

.congress-logo > img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
}

.login-form {
    margin: 1em;
    min-width: 50%;
}

@media only screen and (max-width: 500px) {
    .congress-logo {
        display: none;
    }

    .login-form {
        width: 100%;
    }
}

/** Buttons **/

.btn {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border: 0;
}

.btn:hover, .btn:focus {
    background-color: #3a9dc0;
}

.btn-link {
    box-shadow: none;
}

.btn-primary {
    background-color: #3a9dc0;
}
