@charset "utf-8";
.login-page {
  width: 100%;
  max-width: 480px;
  padding: 5% 20px 0;
  margin: auto;
}
.notpayed-page {
  width: 500px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 480px;
  margin: 0 auto 60px;
  padding: 40px 50px 35px;
  text-align: center;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.form input {
  font-family: "Verdana", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 12px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form input:focus {
  background: #e8e8e8;
  box-shadow: 0 0 0 2px rgba(59, 159, 205, 0.2);
}
.form button {
  font-family: "Verdana", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #3b9fcd;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 5px;
}
.form button:hover,.form button:active,.form button:focus {
  background: #2b8ab8;
  box-shadow: 0 4px 12px rgba(59, 159, 205, 0.3);
  transform: translateY(-1px);
}
.form .message {
  margin: 12px 0 0;
  color: #b3b3b3;
  font-size: 13px;
}
.form .tinymessage {
  margin: 12px 0 0;
  color: #b3b3b3;
  font-size: 10px;
  font-style: italic;
}
.form .message a {
  color: #3b9fcd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.form .message a:hover {
  color: #2b8ab8;
  text-decoration: underline;
}
.form .reset-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 240px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #3b9fcd;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #3b9fcd;
}
body {
  background: #3b9fcd; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #3b9fcd, #2b7cbf);
  background: -moz-linear-gradient(right, #3b9fcd, #2b7cbf);
  background: -o-linear-gradient(right, #3b9fcd, #2b7cbf);
  background: linear-gradient(to left, #3b9fcd, #2b7cbf);
  font-family: "Verdana", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
}

/* Mobile apps section styling */
.mobile-apps-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.apps-heading {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  margin: 0 0 15px 0;
}

.app-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  margin: 10px 0;
}

.store-badge {
  display: block;
  width: 140px;
  transition: all 0.3s ease;
}

.store-badge:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.web-app-link {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #3b9fcd;
  text-decoration: none;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 6px;
  background: #f8f8f8;
  width: auto;
  justify-content: center;
}

.web-app-link:hover {
  background: #eeeeee;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.web-app-link img {
  width: 24px;
  height: 24px;
}

.web-app-link span {
  color: #666;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

/* Responsive adjustments for mobile */
@media (max-width: 520px) {
  .login-page {
    max-width: 100%;
    padding: 5% 15px 0;
  }

  .form {
    max-width: 100%;
    padding: 30px 25px;
  }

  .app-stores {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-badge {
    width: 160px;
  }

  .web-app-link {
    grid-column: 1;
  }
}

@media (max-width: 360px) {
  .form {
    padding: 25px 20px;
  }

  .store-badge {
    width: 140px;
  }

  .web-app-link span {
    font-size: 11px;
  }
}


