@import url(./base.css);

body
{
  background-color: var(--pel-bg-color);
  background-repeat: no-repeat;
  background-size: cover;
}

.logo
{
  display: block;
  min-height: 10em;
  max-height: 12em;
  user-select: none;
}

.mdf-form-field
{
  height: 3rem;
  font-family: 'Inter';
  color: var(--text-dark-color);
  background-color: #FFFFFF;
  border: none;
  border-bottom: 1px solid var(--light-grey-color);
  border-radius: 0px;
  padding: .375rem .375rem;
}

.mdf-form-field::placeholder
{
  color: var(--light-grey-color);
  font-family: 'Inter';
}

.mdf-form-field:focus
{
  caret-color: var(--pel-pink-color);
  box-shadow: unset;
  border-bottom: solid 1px var(--pel-blue-color);
  background-color: var(--white-color);
}

.mdf-form-field:hover
{
  caret-color: var(--pel-pink-color);
  box-shadow: unset;
  border-bottom: solid 1px var(--grey-color);
}

.mobileapp-text
{
  margin-top: 8px;
  font-size: 13px;
  color: var(--grey-color);
  user-select: none;
}

.play-store-icon,
.app-store-icon
{
  width: 1.8rem;
  height: 1.8rem;
  stroke: var(--white-color);
  fill: var(--grey-color);
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s;
  user-select: none;
}

.play-store-icon:hover
{
  fill: var(--pel-pink-color);
}

.app-store-icon:hover
{
  fill: var(--pel-blue-color);
}

@media (min-width: 798px)
{
  .mdf-login-card
  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 65%;
    min-width: 30%;
    justify-content: space-between;
    border: 1px solid #EAECF0;
    filter: drop-shadow(5px 7px 19px var(--light-grey-color));
    background-color: #FFFFFF;
    border-radius: 40px;
  }

  .mdf-card-footer
  {
    background-color: unset;
    border-top: 1px solid var(--light-grey-color);
  }
}

@media (max-width: 798px),
(max-height: 798px)
{
  .mdf-login-card
  {
    width: 100%;
    height: 100%;
    margin: 0;
    justify-content: space-between;
    border-radius: 0;
    background: unset;
  }

  .mobileapp-text
  {
    visibility: hidden;
  }

  .mdf-card-footer
  {
    background-color: unset;
    border-top: unset;
  }
}

@media (max-height: 798px) and (orientation: landscape)
{
  .logo
  {
    min-height: 6em;
    max-height: 8em;
  }

  .mdf-login-card
  {
    justify-content: center;
    align-items: center;
  }

  .mdf-form-field
  {
    height: 2rem;
  }

  .mobileapp-text
  {
    visibility: hidden;
  }

  .mdf-card-footer
  {
    background-color: unset;
    border-top: unset;
  }
}