/* reset code  */
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;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
/* 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;
}





/* index css */

.login-cont{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-inner-cont{
    width: 25%;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 10px;
}

#login-logo{
    width: 50%;
    padding-top: 50px;
}

.login-inner-cont .login-text{
    padding-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}
.login-form{
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.login-username-cont, .login-pass-cont, .login-store-code-cont{
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.login-form label{
    font-weight: 500;
}

.login-form input{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.login-btn-cont{
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#login-btn{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: none;
    background-color: #91c63f;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}



#login-btn:hover{
    background-color: #00467a;
}

.login-btn-cont p{
    padding-top: 15px;
    font-size: 0.8rem;
}

