/* Base styling */
body {
    background: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #343a40;
    margin: 0;
    padding:0;
    min-height: 100vh;
  }
  
  /* Card-style content container */
  .container.flex-container {
    max-width: 480px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings */
  h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
  }
  
  /* Form elements */
  form {
    margin-top: 1rem;
  }
 
  form input,
  form select,
  form textarea {
    border-radius: 0.375rem;
  }
  
  form button,
  button.btn {
    border-radius: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
  }

  div.buttonlink a  h2{
    color: #eeeeee;
    background-color: #01438f;
    border-radius: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    width: 250px;
    text-align: center;
 
  }

  /* QR Code image */
  img[src*="qr"] {
    display: block;
    margin: 2rem auto;
    border: 1px solid #dee2e6;
    padding: 1rem;
    background: #fff;
  }
  
  /* MFA step labels or instructions */
  .mfa-instructions {
    background: #e9ecef;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border-radius: 0.375rem;
  }
  
  /* Override Bootstrap's alert spacing a bit */
  .alert {
    margin-top: 1rem;
    border-radius: 0.5rem;
  }
  
  /* Footer or copyright */
  footer {
    text-align: center;
    font-size: 0.8rem;
    color: #adb5bd;
    margin-top: 3rem;
  }
  /* paper */
  .paper {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    margin-top: 4rem;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    color: rgb(34, 34, 34);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height : 110px;
    align-content: center;
}


.header-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-content: flex-end;
}

.logo {
    height: 50px;
    margin-right: 12px;
    margin-bottom: 4px;
}

.site-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    padding:0;
    color : #01438f;
}

.logout-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.logout-link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.site-footer {
    background-color: #f1f5f9;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.875rem;
    color: #555;
    height: 300px;
}

.footer-logo {
    height: 64px;
    margin-bottom: 0.5rem;
}

.powered-by {
    color: #666;
}
form{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
td{
    padding-left: 1rem;
    padding-right: 1rem;
}
input{
    width: 100%;
}
.form-row{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-row input,
.form-row select{
    flex:1;
    max-width: 50%;
}
.form-row .form-text{
    font-size: smaller;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
