/* Hide the text */
#edit-code--description {
    display: none;
}

#tfa-entry-form > div.js-form-item.form-item.js-form-type-checkbox.form-item-trust-browser.js-form-item-trust-browser > label{
    display: none;
}

#edit-trust-browser--description{
    display: none;
}

.tfa-entry-form .js-form-item label {
    display: block; 
    margin: var(--space-m) 0 var(--space-s);
    font-size: 1.500rem;
    font-weight: bold;
    line-height: var(--line-height-heading);
    margin-left: 3rem;
    margin-right: 3rem;
 }

 .tfa-entry-form .js-form-item {
    display: unset;
 }
 
 #edit-login {
    display: inline-block;
    padding: 8px 12px;
    background-color: #ddd;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
    margin-right: 3rem;
    transition: all 0.3s ease; 
  }
  
  /* Hover effect */
  #edit-login:hover {
    background-color: #c1c2c7; 
    color: #000; 
    border-color: #c1c2c7; 
  }
  
 #tfa-entry-form > div.js-form-item.form-item.js-form-type-textfield.form-item-code.js-form-item-code > input {
    width: 200px;
    padding: 8px;
    border: 1px solid #ccc;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    margin-left: 3rem;
}

#tfa-entry-form::after {
    content: "Verification code is application generated and 6 digits long.";
    display: block;
    margin-top: 10px;
    font-size: 14px;
    margin-left: 3rem;
    margin-right: 3rem;
}
#tfa-entry-form::before {
    content: "Two-Factor Authentication"; 
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    color: inherit;
    background-color: #f3f4f9;
    overflow: hidden;
    margin-bottom: 0.75rem;
    padding: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
}
