﻿html, body, form 
{
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.loginLayout
{
  margin: 0 auto;
  position: relative;
  width: 400px;
  top: 35%;
  padding: 0px 40px 22px 40px;
  background: #ffffff;
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
  box-sizing: border-box;
  border-radius: 6px;
}

.titleLabel 
{
  padding: 0px 8px;
  font-size: 21px;
  line-height: 48px;
  height: 48px;
  display: inline-block;
  cursor: pointer;
  border-top: 3px solid #057FEB;
  color: #057FEB;
}

.loginButton 
{
  position: absolute;
  width: 72px;
  height: 72px;
  top: 190px;
  right: -36px;
  border-radius: 50%;
  box-shadow: 0 5px 14px 0 rgb(5 127 235 / 34%);
  z-index: 10;
}

.arrowBackground 
{
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #057FEB;
  pointer-events: fill;
  cursor:pointer;
}

.arrowBackground.disabled
{
  pointer-events: none;
  background-color: lightslategrey;
}

  .arrow {
    width: 38px;
    height: 22px;
    position: absolute;
    top: 25px;
    left: 17px;
    background-image: url(../Images/arrow.png);
    background-size: 38px 22px;
    opacity: 1;
    transition: opacity .5s;
  }
