body{
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif; 
}

.tagname{
    color:rgb(70, 70, 255)
}
.attributename{
    color:#00bcd4
}

.attributevalue{
    color:#ee7707
}
.ltgt{
    color:#394353
}
.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  .left-side {
    width: 50%;
    background-color: #0d1117;
    color: #c9d1d9;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
  }
  .logo {
    margin-bottom: 40px;
    flex-shrink: 0;
  }
  .code {
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .code pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
  }
  .right-side {
    width: 50%;
    background-color: rgba(8, 151, 225, 1);
    color: #c9d1d9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    height: auto;
  }
  .login-box h2 {
    margin-bottom: 20px;
    color: rgba(8, 151, 225, 1);
    text-align: center;
  }
  .login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .login-box button {
    width: 100%;
    padding: 10px;
    background-color: rgba(8, 151, 225, 1);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .login-box button:hover {
    background-color: #0097a7;
  }