body {
    width: 100%;
    height: 100vh;
    background-color: #eeeeee;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

#main
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow-y: scroll;
}

#mainExtern
{
    width: 100%;
}

#frmLogin
{
    width: 65%;
    min-width: 200px;
    max-width: 300px;
    text-align: left;
}

.frmNext
{
    width: 74%;
    min-width: 200px;
    max-width: 340px;
    text-align: left;
}

.inpLogin
{
    width: calc(100% - 16px);
    outline: none;
    border: none;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
}

.inpLogin:focus
{
    border: solid 1px #bfbfbf;
}

.lbaLogin
{
    font-size: 14px;
    padding-left: 5px;
}

#btnLogin
{
    border: none;
    color: white;
    width: calc(100% + 2px);
    background-color: #287099;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 31px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 100px;
    cursor: pointer;
}


.btnLogin
{
    border: none;
    color: white;
    width: calc(100% + 2px);
    background-color: #287099;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 31px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 4px;
    cursor: pointer;
}

.btnIndexA
{
    border: none;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #287099;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 31px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 8px;
    cursor: pointer;
    margin-bottom: 15px;
}

.btnIndexB
{
    border: none;
    color: white;
    width: 100%;
    background-color: #287099;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 41px;
    border-radius: 4px;
    font-size: 18px;
    margin-top: 8px;
    cursor: pointer;
}
 
.d_btnIndexB
{
    border: none;
    color: silver;
    width: 100%;
    background-color: #1d506d;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 41px;
    border-radius: 4px;
    font-size: 18px;
    margin-top: 8px;
    cursor: default;
}

#footer
{
    width: 100%;
    text-align: center;
    color: silver;
    position: relative;
    top: -50px;
    user-select: none;
}

#footerExtern
{
    width: 100%;
    text-align: center;
    color: silver;
    user-select: none;
    position: fixed;
    top: calc(100% - 50px);
    background-color: #eeeeee;
    padding-bottom: 50px;
    padding-top: 5px;
}

#error
{
    border: none;
    color: white;
    width: calc(100% - 10px);
    background-color: #ff7099;
    border: solid 1px #dddddd;
    box-shadow: 0px 0px 1px -2px silver;
    height: 30px;
    border-radius: 4px;
    font-size: 14px;
    padding-top: 10px;
    padding-left: 10px;
    margin-top: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    white-space: nowrap;
}

.point
{
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    border: solid 1px black;
    display: block;
    opacity: 1;
    cursor: pointer;
}

.fpoint
{
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    border: solid 1px black;
    background-color: black;
    display: block;
    opacity: 1;
    cursor: pointer;
}

button, small, h1, h2, h3, h4
{
    opacity: 0;
    animation: 0.2s forwards loaded ease-in-out;
}

@keyframes loaded {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}
 
::-webkit-scrollbar-thumb {
  background: #888; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; 
}