body {
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.md-padding {
    padding: 32px
}

.sm-padding {
    padding: 16px
}

.xs-padding {
    padding: 8px
}

.sm-margin {
    margin: 16px
}

.sm-margin-y {
    margin: 16px 0
}

.xs-margin {
    margin: 8px
}

.justify-center {
    justify-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.stretch {
    width: 100%
}

.center {
    text-align: center
}

.main {
    height: 100vh;
    width: 100%;
    background-color: #EDEFF3;
    background-image: url(./../images/login-page.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.main-container {
    width: 500px;
    height: auto;
    background-color: white;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 2px 2px 0 rgba(188,188,188,.2);
}

.logo-container {
    width: 100%
}

.logo-sm-container {
    display: none
}

.input-container {
    background-color: #F4F4F4;
    border: 2px solid #F4F4F4;
    border-radius: 4px;
}

.input-container input {
    background-color: #F4F4F4;
    margin: 4px;
    border-style: none;
    border-width: 0px;
    outline: none;
    outline-style: none;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 4px;
}

.remember {
    transform: matrix(1.5, 0, 0, 1.5, 0, 0);
    margin-right: 8px !important;
}

.forgot {
    text-align: right;
    margin-left: 8px
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0ea5c6;
    border-radius: 3px;
    box-shadow: 0 2px 2px rgba(0,0,0,.15);
    color: white;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    border: none;
    width: 100%
}

.button-none {
    background: none !important;
    border: none;
    padding: 0 !important;
    text-decoration: underline;
    cursor: pointer;
    color: #0ea5c6;
    text-align: center;
    font-weight: bold;
}

.button-back {
    align-self: flex-end;
    color: #0ea5c6;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

.logo-icon {
    width: 100px;
    align-self: center;
}

.logo-image {
    width: 100%;
}

input[disabled] {
    opacity: 1;
}

input:focus {
    border-color: #0ea5c6;
    outline-style: none;
}

:focus-within {
    border-color: #0ea5c6;
    outline-style: none;
}



/* Display for smaller screens */
@media screen and (max-width: 767px) {

    .main {
        background-color: white;
        background-image: none;
    }

    .main-container {
        border: none;
        box-shadow: none;
        width: auto;
    }

    .logo-container {
        display: none
    }

    .logo-sm-container {
        display: flex;
        margin-top: 16px
    }

    .logo-icon {
        width: 100%;
    }
}
