body {
  > main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    > .logo-and-title {
      width: fit-content;

      > .logo {
        width: 160px;
        margin-left: 10px;

        &.logo-mobile {
          display: none;
        }
      }

      > .title {
        color: #1b1b1b;
        font-size: 34px;
        font-weight: 800;
      }
    }

    > .box {
      > .head {
        width: 100%;
        color: #7e94a2;
        border: solid 3px #7e94a2;
        border-radius: 16px 16px 0 0;

        > a {
          background-color: transparent;
          text-align: center;
          color: #7e94a2;
          font-size: 17px;
          font-weight: 600;
          text-decoration: none;
          border: none;

          &:nth-child(1) {
            border-radius: 0 10px 0 0;
          }
          &:nth-child(2) {
            border-radius: 10px 0 0 0;
          }

          &.active {
            background-color: #7e94a2;
            color: #ffffff;
          }
        }
      }

      > .inputs {
        width: 100%;
        background-color: #ffffff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);

        > .input {
          width: 300px;

          > label {
            color: #606060;
            font-size: 16px;
            font-weight: 600;
          }

          > input {
            direction: ltr;
            text-align: right;
            font-weight: 500;
            padding: 10px 15px;
            background-color: #efefef;
            letter-spacing: 1px;
            border: none;
            border-radius: 6px;
            outline: none;
          }

          > .error {
            color: #ff0000;
            font-size: 12px;
            font-weight: 500;
          }
        }

        >a{
          width: 300px;
          text-align: right;
          color: #6a9ac2;
          font-size: 14px;
          font-weight: 500;
          text-decoration: none;
        }

        >.remember{
          display: flex;
          align-items: center;
          gap: 7px;
          width: 300px;
          font-size: 14px;
          font-weight: 500;
          color: #272727;
          accent-color: #7e94a2;
        }

        > .submit-button {
          background-color: #6a9ac2;
          color: #ffffff;
          font-size: 16px;
          font-weight: 500;
          border-radius: 6px;
          border: none;
          outline: none;
        }
      }
    }

    @media (max-width: 1200px) {
      > .box {
        width: 75% !important;
      }
    }

    @media (max-width: 768px) {
      > .logo-and-title {
        > .logo {
          width: 44px;
          margin-left: 16px;

          &.logo-desktop {
            display: none;
          }
          &.logo-mobile {
            display: block;
          }
        }
        > .title {
          font-size: 18px;
        }
      }

      > .box {
        width: 100% !important;

        > .head {
          > a {
            font-size: 16px;
          }
        }

        > .inputs {
          > .input {
            width: 70%;
            min-width: 220px;

            > label {
              font-size: 15px;
            }

            > input {
              font-size: 14px;
            }
          }

          >a{
            width: 70%;
          }

          >.remember{
            width: 70%;
          }
        }
      }
    }
  }
}
