body {
    background: linear-gradient(to bottom, #7b1e1e, #2a2321);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    margin: 0;
  }
  
  .container {
    background-color: rgb(55 31 31 / 90%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 400px;
    border: 1px solid #513737;
  }
  
  .title {
    text-align: center;
    color: #f87171;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
  }
  
  label {
    color: #d1d5db;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .imput {
    padding: 2% 2%;
    width: 96%;
    margin: 0 0 2em 0;
    border-radius: 0.375rem;
    background-color: #2a2321 !important;
    color: #fff !important;
    border: none;
    outline: none;
    transition: box-shadow 0.3s;
  }
  
  .imput:focus {
    box-shadow: 0 0 0 2px #ef4444;
  }
  
  button {
    width: 100%;
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 0;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  button:hover {
    background-color: #b91c1c;
  }
  
  .link-text {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
  }
  
  .link-text a {
    color: #f87171;
    text-decoration: none;
  }
  
  .link-text a:hover {
    text-decoration: underline;
  }
  