/** 2023-06-01 ERD: Start Clickshare preview sign-in box **/
.paywall-preview {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
}

.logInSection{
    margin-top: 10px;
}

.previewHeader {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

.previewSubhead {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.preview-sign-in {
    background-color: #f0f0f0;
    margin: 25px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
  .preview-sign-in .signin-button {
    margin-top: 8px;
  }
  
.signin-button {
    background-color: #5b93c6;
    color: #fff;
    margin: 10px 20px;
    border: none;
    width: 250px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signin-button:hover {
    background-color: #0056b3;
}
.previewText {
    font-style: italic;
    font-size: medium;
    margin: 0;
    line-height: normal; 
}

em {
    font-style: italic;
    font-size: 14px;
}

.or-line-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.or-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.or-text {
    margin: 0 10px;
    font-weight: bold;
    font-size: 14px;
    color: #777;
}

.previewLogo {
    max-height: 30px;
    width: auto;
}

/* Initial state for blurred text */
.blurry-text {
    text-shadow: 2px 7px 7px black;
    color: transparent;
    filter: blur(0); /* Set initial blur radius to 0 */
    pointer-events: none;
  }
  
  /* Apply blur when class 'blurred' is added */
  .blurred .blurry-text {
    filter: blur(3px); /* Adjust the blur radius as needed */
  }
  
  .blurry-text a {
    display: none;
  }
  
  /* Disable text selection to prevent text from being dragged */
  .blurry-text::selection {
    background-color: transparent;
    color: inherit;
  }
  
  
