@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&family=Poppins:wght@500;600;700&display=swap);

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q, blockquote {
    quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

* {
    box-sizing: border-box;
}

body,
input,
textarea,
button,
select {
    font-family: 'Open Sans', serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
textarea,
button,
select {
    outline: none;
}

a {
    text-decoration: none;
    color: #0054ff;
}

.clearfix:after {
    clear: both;
    display: table;
    content: '';
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

body {
    background: linear-gradient(90deg, #071c4d, #002d97);
    color: #000;
}

.information {
    max-width: 800px;
    text-align: center;
    margin: 50px auto;
}

.information h2 {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #ffb116;
    font-size: 22px;
}

.information p {
    line-height: 1.4;
    margin: 15px 0;
    color: #fff;
}

.information hr {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px dashed #175cff;
    width: 25%;
    margin-top: 30px;
}

.alert, .flash-alert, .notice, .flash-notice {
    padding: 15px;
    text-align: center;
    color: #fff;
}

.alert, .flash-alert {
    background: #e31700;
}

.notice, .flash-notice {
    background: #175cff;
}


.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #175cff;
}

.main-header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.main-header h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.main-header h1 span {
    font-family: Poppins, sans-serif;
    color: #175cff;
    font-weight: 600;
    font-size: 30px;
}

@media (max-width: 550px) {
    .main-header h1 {
        font-size: 12px;
    }

    .main-header h1 span {
        font-size: 20px;
    }

    .main-header .btn {
        height: 40px;
        padding: 0 20px;
        line-height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .main-header h1 span {
        display: block;
    }
}

.btn {
    background: #175cff;
    font-family: Poppins, sans-serif;
    color: #fff;
    height: 50px;
    display: inline-block;
    padding: 0 40px;
    border-radius: 5px;
    line-height: 50px;
    border: 0;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.btn:hover {
    background: #0044e3;
}

.btn.btn-basic {
    background: #fff;
    color: #000;
}

.btn.btn-basic:hover {
    color: #0044e3;
}

.btn.btn-secondary {
    background: #ffb116;
    color: #000;
}

.btn.btn-secondary:hover {
    background: #e89a00;
}

.userpanel {
    text-align: right;
    white-space: nowrap;
}

.userpanel li {
    display: inline-block;
}

.userpanel strong {
    padding: 0 40px;
    font-weight: 500;
}


.account-frame-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 80px auto;
}

.account-frame-container header {
    margin-bottom: 50px;
}

.account-frame-container header h2 {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.account-frame-container header p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.4;
    margin: 20px 0;
    width: 80%;
}

.account-frame-container form {

}

.account-frame-container form .btn {
    width: 100%;
}

.account-frame-container .account-frame-footer {
    text-align: center;
    margin-top: 25px;
}

.account-frame-container .account-frame-footer .btn-basic {
    background: transparent;
}

.form-row {
    margin: 20px 0;
    width: 100%;
}

.form-row label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    color: #666;
    margin-bottom: 10px;
}

.form-row label ~ ul {
    color: #e31700;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.4;
}

.form-row .textbox {
    border: 2px solid rgba(11, 22, 63, .12);
    color: #575757;
    background-color: #fff;
    padding: 0 20px;
    height: 50px;
    border-radius: 5px;
    width: 100%;
}

.form-row .textbox:focus {
    border-color: #0044e3;
}

.safenote-container {
    margin: 50px auto;
}

.safenote-container header {
    color: #fff;
}

.safenote-container header h3 {
    font-size: 30px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
}

.safenote-container header p {
    font-size: 16px;
    line-height: 1.4;
    margin: 15px 0;
}

@media (max-width: 550px) {
    .safenote-container header h3 {
        font-size: 20px;
    }

    .safenote-container header p {
        font-size: 14px;
    }
}

.safenote-container .message-textbox,
.safenote-container #link {
    background: #175cff26;
    border: 2px solid #175cff26;
    width: 100%;
    resize: vertical;
    border-radius: 5px;
    color: #fff;
    line-height: 1.4;
    font-size: 16px;
    padding: 20px;
    min-height: 100px;
    margin-bottom: 20px;
}

.safenote-container #link {
    min-height: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.safenote-container .btns .btn-basic {
    margin-left: 20px;
}

.picodi p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    margin: 15px 0;
}

.picodi b {
    font-weight: 900;
}

.picodi a {
    color: #ffb116;
}

.picodi a:hover {
    color: #0044e3;
}