﻿.navbar {
  display: none;
}

.page-header {
  display: flex;
  height: 100%;

  @media (width >= 1200px) {
    .container {
      width: 50% !important;

      & > div {
        width: 80%;
        max-width: 600px;
      }
    }
  }

  .background {
    width: 50%;
    height: 100%;
    background: url('../../img/shapes/login-background.svg') no-repeat;
    background-size: cover;

    @media (width < 768px) {
      & {
        position: absolute;
        width: 100%;
      }
    }
  }

  .sem-conta {
    width: max-content;
    position: absolute;
    top: 24px;
    right: 24px;

    font-weight: 600;
    a {
      color: #71717a !important;
    }
  }

  h1,
  p {
    text-align: center;
    margin: 0;
  }

  h1 {
    color: #000;
  }
  p {
    margin-bottom: 24px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .input-container {
    input,
    button {
      height: 40px;
      width: 100%;
    }

    button {
      border: none;
      border-radius: 8px;
      background: #4246ff;
      color: #fff;
    }

    .google-button {
      all: unset;
      width: 100%;
      height: 40px;
      border: 1px solid #00000020;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      cursor: pointer;

      font-weight: 600;
      color: #000;
    }
  }

  .continue {
    width: 100%;
    margin: 16px auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    height: 40px;

    span {
      height: 1px;
      width: 50%;
      background: #00000020;
    }
  }
  @media (width < 768px) {
    & {
      justify-content: center;
      align-items: center;
    }

    .sem-conta {
      a {
        color: #fff !important;
      }
    }

    .container {
      background: #ffffff;
      margin: 0 20px;
      padding-top: 20px;
      border-radius: 8px;
    }

    .row p {
      margin: 0;
    }
  }
}
