 :root{
      --primary-color:#0d6efd;
      --white-color:#ffffff;
    }
    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--white-color);
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-container {
      max-width: 900px;
      width:400px;
      /* min-width: 500px; */
      background: var(--white-color);
      border-radius: 8px;
      overflow: hidden;
      /* box-shadow: 0 0 30px rgba(0,0,0,0.08); */
    }

    .login-panel {
      padding: 40px;
    }

    .form-control {
      border-radius: 8px;
    }

    .btn-primary {
      border-radius: 8px;
      width: 100%;
    }

    .login-header {
      font-weight: 700;
      font-size: 24px;
    }

    .form-icon {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      color: #aaa;
    }
    .form-select{
      color: #595c5f;
    }
    .form-group {
      position: relative;
    }

    .form-group input {
      padding-left: 40px;
    }

    a {
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }