/*=============================================================================
reset styles
=============================================================================*/

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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*===========================================================================*/
/* default                                                                   */
/*===========================================================================*/

.container {
    margin: 15px 55px;
}

/*.default-btn-insert {
    min-width: 100px;
    border: 1px solid #fff;
    margin: 5px;
    padding: 9px;
    background-color: #61ed3e;
    color: #fff;
    cursor: pointer;
}

.default-btn-insert:hover {
    background: #48b52b;
    color: #fff;
    transition: 0.15s;
}

.default-btn-insert:active {
    background: #122e0b;
    transition: 0.5s;
}*/

.default-btn-insert {
    min-width: 100px;
    border: 1px solid #3e81ed;
    margin: 5px;
    padding: 9px;
    background-color: #fff;
    color: #3e81ed;
    cursor: pointer;
}

.default-btn-insert:hover {
    background: #345fa3;
    color: #fff;
    transition: 0.15s;
}

.default-btn-insert:active {
    background: #0f203d;
    transition: 0.5s;
}

.default-btn-update {
    min-width: 100px;
    border: 1px solid #fff;
    margin: 5px;
    padding: 9px;
    background-color: #3e81ed;
    color: #fff;
    cursor: pointer;
}

.default-btn-update:hover {
    background: #345fa3;
    color: #fff;
    transition: 0.15s;
}

.default-btn-update:active {
    background: #0f203d;
    transition: 0.5s;
}

.default-btn-cancel {
    min-width: 100px;
    border: 1px solid #ed523e;
    margin: 5px;
    padding: 9px;
    background-color: #fff;
    color: #ed523e;
    cursor: pointer;
}

.default-btn-cancel:hover {
    background: #ed523e;
    color: #fff;
    transition: 0.15s;
}

.default-btn-cancel:active {
    background: #0f203d;
    transition: 0.5s;
}

.default-btn-delete {
    min-width: 100px;
    border: 1px solid #ed523e;
    margin: 5px;
    padding: 9px;
    background-color: #ed523e;
    color: #fff;
    cursor: pointer;
}

.default-btn-delete:hover {
    background: #c91d06;
    color: #fff;
    transition: 0.15s;
}

.default-btn-delete:active {
    background: #0f203d;
    transition: 0.5s;
}

.default-table table {
    padding: 5px;
    margin: 2px;
}

.default-table thead {
    color: #fff;
    background-color: #6A679E;
}

.default-table th, td {
    border: 1px solid #D4D3E8;
    padding: 11px;
    margin: 9px;
}

.mod:hover {
    background-color: #cbcaed;
    cursor: pointer;
}

.default-form {
    display: flex;
    flex-direction: column;
    margin: 0 25px;
}

.default-form input, select {
    margin: 5px 0;
    padding: 3px;
    max-width: 320px;
}

.default-msg {
    min-height: 15px;
    font-size: 90%;
}

/*===========================================================================*/
/* login view                                                                */
/*===========================================================================*/

.login-view-div {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-view-form {
    display: flex;
    flex-direction: column;
    width: 280px;
    margin: 0 0 275px 0;
}

.login-view-span {
    margin: 5px 0;
}

.login-view-input:active,
.login-view-input:focus,
.login-view-input:hover {
    outline: none;
    border-bottom-color: #6A679E;
}

.login-view-input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px 0;
    padding-left: 24px;
    font-weight: 700;
    width: 75%;
    transition: .2s;
}

.login-view-submit {
    background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 3px;
    border: 1px solid #D4D3E8;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    color: #4C489D;
    box-shadow: 0px 2px 2px #5C5696;
    cursor: pointer;
    transition: .2s;
}

.login-view-msg {
    height: 15px;
    color: red;
    opacity: 0.2;
    animation: ani 1.2s forwards;
}

@keyframes ani {
    0% {opacity: 0.2}
    100% {opacity: 1}
}

/*===========================================================================*/
/* account view                                                              */
/*===========================================================================*/

.acc-view-block {
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

/*===========================================================================*/
/* accountcard                                                               */
/*===========================================================================*/

.accountcard-match {
    border-color: #2ecc71;
}

.accountcard-mismatch {
    border-color: #ed523e;
}

.accountcard-msg-match {
    color: #2ecc71;
}

.accountcard-msg-mismatch {
    color: #ed523e;
}