html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
main {
  /* padding: 0 !important; */
}
.login-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  a {
    display: inline-block;
    img {
      height: 3rem;
    }
  }
}

.join-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    .image-wrap {
      width: 8rem;  /* 필요 시 조정 */
      height: 8rem;
      display: grid;
      place-items: center;
      margin: 0 auto 0.5rem;
      position: relative;

      img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        cursor: pointer;
        user-select: none;
      }

      .profile-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #fff;
        cursor: pointer;
        user-select: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #000;
      }

      .delete-button {
        position: absolute;
        bottom: 0;
        left: 100%;
        background: none;
        padding: 0.25rem 0.5rem;

        &:hover {
          background-color: #ffffff1a;
        }

        .xi {
          color: #fff;
        }
      }
    }

    label {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;

      input {
        background: none;
        color: #fff;
        border: 1px solid #333;
        padding: 0.25rem;
      }

    }

    button {
      margin-top: 0.5rem;
      padding: 0.25rem;
      background: #fff;
      border: none;
      color: #000;
    }

    &.leave-form {
      width: 100%;

      .leave-button {
        margin-top: 1rem;
        padding: 0.25rem;
        background: #f00;
        border: none;
        color: #fff;
        width: 100%;
      }
    }

  }
}
