:root {
    --body-color: #fff;
    --container-color: #eee;
    --container-color-alt: #ddd;
    --border-color-light: #cfcccc;
    --scroll-color: #888091;
    --dropdown-shadow: #b6a2a2;
    --text-color: #000;
    --placeholder-color: #666;
    --header-shadow: #f3e7f3;
  }
  body[data-theme="dark"] {
    --body-color: #191627;
    --container-color: #100e1b;
    --container-color-alt: #211d35;
    --border-color-light: #cfcccc;
    --scroll-color: #888091;
    --dropdown-shadow: #252525;
    --text-color: #f2f1f3;
    --placeholder-color: #ccc;
    --header-shadow: #0000002d;
  }
  .shortcut-links a:first-child,
  .shortcut-links a:nth-child(2),
  .shortcut-links a:nth-child(3),
  .shortcut-links a:nth-child(4),
  .shortcut-links a:nth-child(5),
  .shortcut-links a:nth-child(6),
  .shortcut-links a:nth-child(7) {
    color: var(--text-color);
  }
  .shortcut-links a:nth-child(8) {
    color: #ed3833;
  }
  
  /* heading */
  .header {
    z-index: 100;
  }
  
  /* Main */
  .container {
    margin-left: 10%;
    min-width: 90%;
    height: 87.9%;
  }
  .container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .container .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .content1 .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .content .left-side .details {
    margin: 14px;
    text-align: center;
  }
  .content .left-side .details i {
    font-size: 30px;
    color: #d82148;
    margin-bottom: 10px;
  }
  .content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
  }
  
  .container .content .right-side {
    width: 100%;
    margin-left: 75px;
  }
  .content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #d82148;
  }
  .content .right-side .txt {
    color: var(--placeholder-color);
  }
  .right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box {
    min-height: 110px;
  }
  .right-side .input-box textarea {
    padding-top: 6px;
  }
  .right-side .button {
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="button"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #d82148;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover {
    background: #5029bc;
  }
  
  @media (max-width: 950px) {
    .container1 {
      width: 90%;
      height: 150%;
    }
    .container .content .right-side {
      width: 75%;
      margin-left: 55px;
      margin-bottom: 0%;
    }
  }
  @media (max-width: 820px) {
    .container {
      margin: 0;
      height: 100%;
    }
    .container .content {
      flex-direction: column-reverse;
    }
    .container .content .left-side {
      display: flex;
      align-items: flex-start;
      flex-direction: row;
    }
    .container .content .left-side i {
      font-size: 30px;
    }
    .container .content .left-side .text-one,
    .container .content .left-side .text-two {
      font-size: 10px;
    }
    .container .content .left-side::before {
      display: none;
    }
    .container .content .right-side {
      width: 100%;
      margin-left: 0;
    }
  }
  