p {
  margin: 0;
}

.form_pendaftaran {
  white-space: initial !important;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px;
  font-family: "Raleway";
  border-radius: 7px;
  overflow: hidden;

  @media screen and (max-width: 480px) {
    padding: 15px;
  }

  div {
    line-height: normal !important;
  }

  .form_background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background: var(--gradient-green);
    top: 0;
    left: 0;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      overflow: hidden;
    }
  }

  .form_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 40px;
  }

  .form_header {
    width: 100%;
    height: fit-content;
    text-align: center;

    p {
      font-size: 26px;
      font-weight: 700;

      @media screen and (max-width: 768px) {
        font-size: 24px;
      }

      @media screen and (max-width: 480px) {
        font-size: 20px;
        margin-top: 20px;
      }
    }

    p:nth-child(2) {
      font-size: 15px;
      font-weight: 400;
      color: #fff;
      margin-top: 10px;

      @media screen and (max-width: 768px) {
        font-size: 14px;
      }

      @media screen and (max-width: 480px) {
        font-size: 12px;
        margin: 10px 0;
      }
    }
  }

  .form_body {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;

    .section {
      width: 100%;
      display: flex;
      gap: 10px;
      align-items: stretch;

      .form_status {
        width: 60px;
        position: relative;

        .status_line {
          width: 5px;
          height: calc(100% - 50px);
          background-color: #b41f1c;
          position: absolute;
          left: 50%;
          bottom: 10px;
          transform: translateX(-50%);
          border: none;
          border-radius: 5px;
        }

        .status_icon {
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background-color: #b41f1c;
          position: relative;
          top: -10px;
          left: 50%;
          transform: translateX(-50%);

          img {
            width: 40%;
            height: fit-content;
            object-fit: cover;
          }
        }
      }

      .form_content {
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;

        button {
          width: 100%;
          height: 40px;
          border-radius: 3px;
          border: none;
          outline: none;
          background-color: #b41f1c;
          color: #fff;
          font-weight: 500;
          font-size: 15px;
          cursor: not-allowed;

          @media screen and (max-width: 768px) {
            font-size: 13px;
            height: 30px;
          }
        }

        p {
          color: #fff;
          font-size: 12px;
        }

        .content_header {
          display: flex;
          justify-content: space-between;

          p {
            font-size: 17px;
            color: #000;
            font-weight: 700;

            @media screen and (max-width: 768px) {
              font-size: 16px;
            }

            &:nth-child(2) {
              font-size: 14px;
              font-weight: 400;
              color: #fff;
            }
          }
        }
      }

      .content_body {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 10px;
        color: #fff;

        .input_horizontal {
          width: 100%;
          height: fit-content;
          display: flex;
          gap: 10px;

          @media screen and (max-width: 480px) {
            flex-direction: column;

            .input_container {
              width: 100% !important;
            }
          }
        }

        .input_container {
          width: 100%;
          height: fit-content;
          display: flex;
          flex-direction: column;
          gap: 7px;

          @media screen and (max-width: 768px) {
            label {
              font-size: 14px;
            }
          }

          input,
          textarea {
            width: 100%;
            height: 40px;
            padding: 0 7px;
            border-radius: 3px;
            border: none;
            outline: none;
            background-color: #fff;
            font-weight: 500;
            font-size: 15px;

            @media screen and (max-width: 768px) {
              font-size: 14px;
              height: 35px;
            }
          }

          textarea {
            height: 100px;
            padding: 7px;
            font-family: "Raleway";
          }
        }
      }
    }
  }
}