@charset "utf-8";
/* CSS Document */



/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

/* reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

/* styling */
body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: url('../images/background1.png') no-repeat center center fixed;
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
    }

    .top-logo {
      text-align: center;
      margin-bottom: 32px;
    }

    .top-logo img {
      height: 78px;
		margin-bottom: -28px;
    }

    .top-logo .subtitle {
     font-size: 13px;
    padding-top: 0px;
    color: #1e1e1e;
    margin-top: -12px;
    font-weight: 500;
    }

.top-banner {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 20px;
}

.left-logo img {
  height: 60px;
	margin-left: 168px;
}

.right-text p {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  text-align: right;
  margin-right: 189px;
}


    .login-box {
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
      padding: 16px;
      text-align: center;
		margin-top: 60px;
    }

    .logo {
      width: 273px;
      margin-bottom: 0px;
    }

    h2 {
      font-size: 16px;
      margin: 10px 0;
    }

    p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .membership-box {
      display: flex;
      align-items: center;
    }

    .membership-box span {
      background: #eee;
      padding: 12px;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      font-size: 14px;
      color: #666;
      border: 1px solid #ccc;
      border-right: none;
    }

    .membership-box input {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border-left: none;
      flex: 1;
    }

    .info-text {
      font-size: 12px;
      color: #777;
      margin-bottom: 20px;
    }

    button {
      width: 100%;
      background-color: #007bff;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0056b3;
    }

    .instructions {
      margin-top: 20px;
      font-size: 14px;
    }

    .instructions a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .instructions a:hover {
      text-decoration: underline;
    }