/* verify_code.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a120b;
    color: #e5e5cb;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .verify-container {
    background-color: #3c2a21;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  h1 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
    color: #d5cea3;
  }
  
  #email-display {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #f4a261;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #e5e5cb;
    color: #1a120b;
  }
  
  .btn-submit {
    width: 100%;
    background-color: #f4a261;
    color: #1a120b;
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-submit:hover {
    background-color: #e76f51;
  }
  
  .resend {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  #resend-btn {
    background: none;
    color: #f4a261;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
  }
  
  #resend-btn:hover {
    text-decoration: underline;
  }
  body{
    padding-bottom: 0px;
  }