/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500&display=swap');

/*
*  html5resetcss
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
a {text-decoration: none;}


* {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    scrollbar-width: thin;
    scrollbar-color: #a235fe #eee; 
}

html, body {
    height: 100vh;
}

body {
    background:#a235fe url(../images/bg.jpg) repeat-x;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.2); */
}

a {
    color:#5e10a3;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.logo {
    text-align: center;
    padding:30px 0;
    box-sizing: border-box;
}
.comingSoonWrapper {
    height: calc(100% - 201px);
    display: flex;
    color:#fff;
    font-size:50px;
    font-weight: 500;
    text-shadow: 0px 0px 7px rgba(72, 72, 72, 0.13);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.homeContentWrapper {
    height: calc(100% - 326px);
    max-width: 1180px;
    margin: 60px auto 0;
    color: #fff;
    text-shadow: 0px 0px 7px rgba(72, 72, 72, 0.13);
    line-height: 26px;
    font-weight: 300;
    font-size: 15px;
    text-align: justify;
    box-sizing: border-box;
}
footer {
    background:#7f2aca;
    height:44px;
    color:#fff;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 15px;
}

footer a {
    color:#fff;
    margin:0 10px;
    font-size: 14px;
    /* background:red; */
    padding:5px;
    border-radius: 5px;
}

footer a:hover {
    background:#5e10a3;
    text-decoration: none;
}

.contentWrapper {
    min-height: calc(100% - 266px);
    max-width: 1180px;
    margin:auto;
}

.content {
    background: #fff;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    padding: 35px;
    /* height: 1000px; */
    margin-bottom: 25px;
    line-height: 26px;
    font-weight: 300;
    font-size: 15px;
    text-align: justify;
    box-sizing: border-box;
}

.accountDeletionForm {
    width:500px;
    margin: auto;
}

.accountDeletionForm div {
    padding:10px 0;
    display: flex;
}

.accountDeletionForm div label {
    width:150px;
    margin:0 20px 0 0;
}

.accountDeletionForm div input, .accountDeletionForm textarea {
    width:calc(100% - 170px);
    border-radius: 8px;
    padding: 10px;
    border:1px solid #5a5a5a;
}
.action-button {
    background:#5e10a3;
    padding:10px 15px;
    color:#fff;
    border:0px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}
.action-button:hover {
    background:#41007a;
}
.content h2, h2 {
    font-weight: 500;
    font-size: 22px;
    margin:0 0 25px;
}

.content h3 {
    font-weight: 500;
    font-size:18px;
    margin:0 0 15px;
    border-bottom:2px solid #5e10a3;
    padding-bottom:5px;
}

.content p, p {
    margin:0 0 15px;
}

.content p strong, p strong {
    font-weight: 500;
    display: block;
    margin:0 0 10px;
}
.content b {
    font-weight: 500;
}
.content ul, .content ol {
    margin:0 0 0 25px;
}

.content li {
    margin:0 0 15px;
}

.content table {
    border-collapse: collapse;
    table-layout: fixed;
}
.content thead tr {
    background: #c480ff;
    color: #fff;
    position: relative;
}
.content th {
    color: #fff;
    font-weight: 500;
}
.content td, .content th {
    padding: 10px;
    border: 1px solid #a15cdd;
    vertical-align: text-top;
    text-align: left;
}

@media only screen and (max-width: 700px) {
    .comingSoonWrapper {
        height: calc(100% - 214px);
    }
    footer {
        text-align: center;
        flex-direction: column;
        padding:10px;
        height:38px;
    }
}  

#submission-message {
    color: hsl(120, 70%, 20%);
}