| import styled from "styled-components";
export const StyledRegisterSection = styled.div`
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1280px;
 
  .container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 140px 40px;
  }
  .container-left {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 50%;
    gap: 70px;
  }
  .container-left .content-up {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .container-left .content-up h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: var(--white);
  }
  .title-details {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .container-right {
    display: flex;
    justify-content: center;
    width: 50%;
  }
  @media (max-width: 1024px) {
  .container {
    padding: 40px 5vw;
  }
  .container-left {
    width: 100%;
  }
  .container-left .content-up {
    gap: 16px;
  }
  .container-left .content-up h1 {
    font-size: 24px;
  }
  .container-left .content-up span {
    font-size: 24px;
  }
  .container-right {
    display: none;
  }
}
`;
 |