/*

'||''|.   ..|''||   |''||''|     |     |''||''|  ..|''||   
 ||   || .|'    ||     ||       |||       ||    .|'    ||  
 ||...|' ||      ||    ||      |  ||      ||    ||      || 
 ||      '|.     ||    ||     .''''|.     ||    '|.     || 
.||.      ''|...|'    .||.   .|.  .||.   .||.    ''|...|'  
                                                           
                                                           
POTATO.THESERVER.LIFE
LICENSE GPL-3.0

-------------------------------
pseudo-form.css
-
Pseudo form styles
*/



#pseudoForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.6);
    z-index: 1000;
    display: none;
    max-width: 90vw;
    width: 400px;
    transition: all 0.3s ease;
  }
  
  #pseudoForm label {
    font-size: 25px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  #pseudoForm input[type="text"] {
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #27ae60;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
  }
  
  #pseudoForm input[type="text"]:focus {
    border-color: #219653;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.6);
    background-color: white;
  }
  
  #submitPseudo {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #submitPseudo:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  #submitPseudo:active {
    background-color: #1e8449;
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }