﻿* {
    box-sizing: border-box;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img {
}

body {
    background-color: #BD3227;
    color: #ffffff;
}

h1 {
    font-weight: bolder;
    font-size: 42px;
    line-height: 35px;
}

h3 {
    font-weight: lighter;
    line-height: 20px;
}

.statusContainer {
    display: flex;
    flex-direction: row;
    align-items: start;
    margin-top: 20px;
    background-color: rgba(255,255,255,.8);
    border-radius: 5px;
    padding: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    max-width: 600px;
}

    .statusContainer .mdi {
        color: #bd3227;
        background-color: white;
        padding: 10px;
        font-size: 40px;
        height: 100%;
        display: flex;
        align-items: start;
    }

.statusIcon {
    border: 6px solid rgba(0,0,0,.2);
    border-radius: 100px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin: 15px;
    margin-right: 0;
}

    .statusIcon.success {
        background-color: #67d299;
    }

    .statusIcon.error {
        background-color: #ffaabb;
    }

.statusText {
    color: #555555;
    font-size: 20px;
    line-height: 24px;
    margin-left: 20px;
    margin-right: 30px;
    padding: 18px 0;
}
