@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body{
    background-color: #04030c;
    color: #ffffff;
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", Helvetica, sans-serif;
}
.choose-role {
    background-color: #04030c;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
  
  .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
  }
  
  .logo {
    width: 110px;
    height: 83px;
    margin-bottom: 20px;
  }
  
  .title {
    color: #ffffff;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .subtitle {
    color: #ffffff;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
  }
  
  .role-selection {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .role-card {
    background: url('https://vshowcards.com/images/bg-role.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    /* background: #161C25; */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    width: 220px;
    height: 163px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    /* border: 2px solid #04030c; */
  }
 
  
  .role-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  
  .role-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .role-description {
    font-size: 13px;
    opacity: 0.8;
  }
  
  .next-button {
    background-color: #55ddff !important;
    color: #000 !important;
    font-weight: bold !important;
    padding: 14px 50px !important;
    border-radius: 12px !important;
    cursor: pointer;
    border: none;
    text-decoration: none;
  }
  
  .login-text {
    color: #ffffff;
    font-size: 16px;
  }
  
  .login-link {
    color: #55ddff;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
  }

  
  
  /* Mobile View (Max-width: 768px) */
  @media screen and (max-width: 768px) {
    .overlay {
      max-width: 90%;
      margin-top: 400px;
      padding: 15px;
    }
  
    .title {
      font-size: 24px;
    }
  
    .subtitle {
      font-size: 16px;
      line-height: 24px;
    }
  
    .role-selection {
      flex-direction: column;
      gap: 20px;
    }
  
    /* .role-card {
      background: url('http://localhost/vshowcards.com-newsite/images/bg-role-mobile.png');
      width: 450px;
      padding: 20px;
    } */
  
    .role-title {
      font-size: 18px;
    }
  
    .role-description {
      font-size: 14px;
    }
  
  }
  
  /* Small Mobile View (Max-width: 480px) */
  @media screen and (max-width: 480px) {
    .overlay {
        margin-top: 700px;
      }
    .title {
      font-size: 20px;
    }
  
    .subtitle {
      font-size: 14px;
      line-height: 22px;
    }
  
    .role-selection {
      gap: 15px;
    }
  
    /* .role-card {
      background: url('http://localhost/vshowcards.com-newsite/images/bg-role-mobile.png');
      width: 450px;
      padding: 15px;
    } */
  
    .role-title {
      font-size: 16px;
    }
  
    .role-description {
      font-size: 12px;
    }
  
    .next-button {
      font-size: 14px;
      padding: 10px;
    }
  
    .login-text {
      font-size: 14px;
    }
  }
  