@import "global.css";
@import "./footer.css";

main.login_page {
  margin-top: 6.25rem;

  .login_section_container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
    margin-bottom: 6.25rem;

    .login_section_logo_wrapper {
      display: flex;
      max-width: 15.875rem;
    }

    .login_section_wrapper {
      background-color: white;
      border-radius: 1.5rem;
      margin-top: 2.5rem;
      padding: 1.875rem;

      .login_form_title {
        text-align: center;
        margin-bottom: 2.5rem;

        h4 {
          color: var(--theme-black);
          font-weight: 600;
          margin-bottom: 0.75rem;
        }

        p {
          color: var(--theme-secondary-text);
          font-weight: 500;
          margin: 0 1.25rem;
        }
      }

      .login_form_wrapper {
        .login_form_input {
          margin-bottom: 1.875rem;

          label {
            color: var(--theme-secondary-text);
            font-weight: 500;
          }

          .rounded_input {
            background-color: var(--theme-input);
            border-radius: 99px;
            border: 1px solid var(--theme-border);
            display: flex;
            margin-top: 0.625rem;
            padding: 1rem 1.5rem;

            input {
              border: none;
              color: var(--theme-black);
              flex: 1;
              font-weight: 500;
              min-width: 1px;
            }

            span {
              display: block;
              width: 1.25rem;
            }
          }
        }
      }

      .login_form_cta {
        margin-top: 3.125rem;

        button {
          background-color: var(--theme-button);
          border-radius: 99px;
          padding: 1rem;
          width: 100%;

          p {
            color: var(--theme-white);
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 2.2rem;
          }
        }
      }
    }
  }
}

@media (min-width: 1280px) {
  main.login_page {
    .login_section_container {
      .login_section_logo_wrapper {
      }

      .login_section_wrapper {
        .login_form_title {
          h4 {
          }

          p {
          }
        }

        .login_form_wrapper {
          .login_form_input {
            label {
            }

            .rounded_input {
              input {
              }

              span {
              }
            }
          }
        }

        .login_form_cta {
          button {
            p {
              font-size: 1.125rem;
              line-height: 1.5rem;
            }
          }
        }
      }
    }
  }
}
