@font-face {
    font-family: "Gravity Regular";
    font-style: normal;
    font-weight: normal;
    src: local("/fonts/Gravity Regular"),url("/assets/fonts/Gravity-Regular.woff") format("woff")
}

@font-face {
    font-family: "Gravity Italic";
    font-style: normal;
    font-weight: normal;
    src: local("/fonts/Gravity Italic"),url("/assets/fonts/Gravity-Italic.woff") format("woff")
}

@font-face {
    font-family: "Gravity Light";
    font-style: normal;
    font-weight: normal;
    src: local("/fonts/Gravity Light"),url("/assets/fonts/Gravity-Light.woff") format("woff")
}

@font-face {
    font-family: "Gravity Bold";
    font-style: normal;
    font-weight: normal;
    src: local("/fonts/Gravity Bold"),url("/assets/fonts/Gravity-Bold.woff") format("woff")
}


body {
    font-family: "Gravity Regular",sans-serif;
    font-weight: 400;
    font-size: large;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fafafa;
}

.signin-bg { 
    background-image: url("../img/tennis_bg3.jpg");
    height: 100%; 
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -100;
}

.signin-box {
    max-width: 450px;
    background-color: #F4F3F5;
    padding: 10px;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 0px;
    margin-top: 20px;
}

.margin-tb-2
{
	margin-top: .5em;
	margin-bottom: .5em;
}

.intl-tel-input
{
    width: 100%;
}

.form-control {
    border: 1px solid #D9D9D6;
    border-radius: 0px;
}

.btn {
    border-radius: 0;
}

.form-signin-login {
    max-width: 320px;
    padding: 15px;
    margin: 0 auto;
}

.form-signin-register {
  max-width: 400px;
  padding: 15px;
  margin: 0 auto;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}

.form-signin .checkbox {
  font-weight: normal;
}

.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.itia-error-border {
    border: 2px solid #e992a1 !important;
    border-left: 8px solid #E40028 !important;
    border-radius: 5px !important;
    background-color: #fff5f5;
    font-size: 14px;
}

.itia-success-border {
    border: 2px solid #83d28c !important;
    border-left: 8px solid #0acb00 !important;
    border-radius: 5px !important;
    background-color: #effff2;
    font-size: 14px;
}

.itia-warning-border {
    border: 2px solid #ffdaa9 !important;
    border-left: 8px solid #ffba1d !important;
    border-radius: 5px !important;
    background-color: #fff9e8;
    font-size: 14px;
}

/* Wait for PIN */
.loader {
    border: 16px solid #efefef; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.loader-stopped {
    border: 16px solid #efefef; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

