body
    {
        margin:0;
        padding:0;
        font-size:small;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        background-color: #d4d4d4ef;
    }
[v-cloak]
    {
	    display:none;
    }
input,select,textarea,button,a,td,span,label,.dp__input_wrap input
    {
        font-size:small;
        /*font-family: Verdana, Geneva, Tahoma, sans-serif*/;
        font-family:"Courier New", Courier, monospace;
        
    }
#MainContainer
    {
        width:100vw;
        height: 100vh;
        box-sizing: border-box;
        border:solid 1px transparent;
        overflow-y: auto;
    }
#Content1
    {
        width:100%;
        height: 100px;
        box-sizing: border-box;
        border-bottom: solid 1px gray;
        box-shadow: 1px 3px 5px gray;
        display: flex;
        flex-direction: row;
    }
#Content1D1
    {
        width:100px;
        height: 100%;
        box-sizing: border-box;
        padding:10px;
    }
#Content1D1 img
    {
        width:100%;
        height: 100%;
    }
#Content1D2
    {
        flex-grow: 1;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
#Content1D2 h1
    {
        margin-left: 20px;
        font-size:40px;
        font-weight: bold;
        font-size: clamp(12px,2vw,25px);
    }
#Content2
    {
        padding: 10px;
    }
#Content2 .Group
    {
        width:30%;
        margin-top: 5px;
        position: relative;
    }
#Content2 .Group label
    {
       font-weight: 800;
    }
#Content2 .Group input[type="text"], #Content2 .Group input[type="password"]
    {
      width:100%;
      height: 30px;
      box-sizing: border-box;
      border:solid 1px gray;
      border-radius: 4px;
      outline: none;
    }
#Content2 .Group input[type="password"]
    {
        padding-right: 22px;
    }
#Content2 .Group input[type="text"]:focus, #Content2 .Group input[type="password"]:focus
    {
      border:solid 1px blue;
    }
#Content2 .Group i
    {
        position: absolute;
        right: 5px;
        top:22px;
        font-size: 18px;
        cursor: pointer;
    }
#Content2 .Group button
    {
      width:30%;
      height:30px;
      box-sizing: border-box;
      cursor: pointer;
    }
@media screen and (max-width: 600px)
    {
        #Content2 .Group
            {
                width:100%;
            }
  }
