<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&amp;display=swap');

* {
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background-color: #F2F3F7 !important;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 1.75;
    color: #282828;
}

.bold {
    font-weight: bold;
}

.tile {
    user-select: none;
    width: 160px;
    margin-right: 40px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 0px 15px #00000026;
}

.tile &gt; .icon {
    height: 50px;
}

.tile &gt; .name {
    text-align: center;
    color: #E6007E;
}

.tile &gt; .button {
    height: 36px;
    min-height: 36px;
    border: 1px solid #1885F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1885F2;
    font-weight: 600;
}

.tile &gt; .button:hover {
    background-color: #1885F2;
    color: #FFFFFF;
}

.tile &gt; .button &gt; .caption {
    margin: 0 8px;
}

.tile &gt; .button &gt; .icon {
    margin: 0 8px;
}

.left-container {
    background-image: url(/images/branding/ec.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 40%;
    float: left;
}

.right-container {
    width: 60%;
    float: right;
    position: relative;
    height: 100%;
}

.right-container &gt; .content {
    margin-left: 10%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    float: left;
    width: 350px;
}

.right-container &gt; .content &gt; .content-header &gt; .logo {
    width: 100%;
    margin-bottom: 10px;
}

.right-container &gt; .content &gt; .content-header &gt; .title {
    font-size: 24px;
    line-height: 22px;
    font-weight: normal;
    text-align: left;
    margin: 8px 0 40px;
}

.right-container &gt; .content &gt; .content-header &gt; .subtitle {
    text-align: left;
}

.right-container &gt; .content &gt; .content-body {
    float: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 20px;
}

.right-container &gt; .content &gt; .content-footer {
    font-size: 14px;
}</pre></body></html>