* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Futura, Futura-Medium, "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", AppleGothic, "URW Gothic L", "Avant Garde", sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;

    -webkit-background-image: url('../img/background.png');
    -moz-background-image: url('../img/background.png');
    -o-background-image: url('../img/background.png');
    -ms-background-image: url('../img/background.png');
    background-image: url('../img/background.png');

    -webkit-background-repeat: no-repeat;
    -moz-background-repeat: no-repeat;
    -o-background-repeat: no-repeat;
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;

    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    -ms-background-attachment: fixed;
    background-attachment: fixed;

    -webkit-background-position: center;
    -moz-background-position: center;
    -o-background-position: center;
    -ms-background-position: center;
    background-position: center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
section {
    position: relative;
    width: 100%;
    height: 100%;
}
.left, .right {
    width: 50%;
    float: left;;
}
.hide{
    display: none;
}
/* Auth Page */
#auth-page {
    background-image: url('../img/Abstract-Lines.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
}
#auth-page .auth-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    /* height: 50%; */
  }
  #auth-page form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
  }
  #auth-page form img {
    width: 100%;
    height: auto;
  }
  #auth-page form input {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    padding: 15px;
    background: #f2d9bf;
    border: none;
    color: #e27404;
    text-align: center;
  }
  #auth-page .btn-auth {
    outline: none;
    background: #e27403;
    color: white;
    padding: 13px 20%;
    border-radius: 5px;
    border: 1px solid #f4b471;
    margin-top: 20px;
    margin-bottom: 23px;
    width: 100%;
  }
  /* Call Page */
  #call-page {
    background-image: url('../img/Page1bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}
#call-page .btn-call {
    background-image: url('../img/call-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    bottom: 50px;
    right: 80px;
}
/* Dialing Page */
#dialing-page {
    background-image: url('../img/Page2.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

@media only screen and (max-width: 600px) {
    #call-page .btn-call {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
  }