<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    padding: 0;
    margin: 0;

}
body{
    position: relative;
}

footer { 
    position: absolute;
    bottom: 0;
}

body {
    width: 100%;
}
main {
    background-color: #dcf4fb;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: 40px 0;
    justify-content: center;
}
.container  {
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    width: 440px;
    height: 90%;
    margin: 0 10px;
}
.eonwan { 
    padding: 10px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.rissala {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 0.6rem;
    margin: 1rem 0;
    border-left: 4px solid #c0f0ff;
}
.rissala ul li {
    padding: 5px 0;
    margin:0 20px ;
}
.container button {
    margin: auto;
}
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    height: 90%;
  }

  .loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #70d3f1;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }

  .loader-text {
    color: #70d3f1;
    font-size: 14px;
    animation: fade 1.5s ease-in-out infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes fade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
  }

  .form-container {
    background: white;
    padding: 10px;
    border-radius: 12px;
    margin: 0 auto;
  }


  .input-group {
    margin-bottom: 24px;
    position: relative;
  }

  .form-label {
    display: block;
    color: #05c1ecc5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }

  .form-input:hover {
    border-color: #91e5ff;
  }

  .form-input:focus {
    outline: none;
    border-color: #91e5ff;
    box-shadow: 0 0 0 4px rgba(145, 229, 255, 0.2);
  }

  .form-input.error {
    border-color: #d32f2f;
  }

  .form-input.error:focus {
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
  }

  .error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 4px;
    display: none;
    padding: 4px 8px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 4px;
  }

  .error-message.visible {
    display: block;
  }

  .form-input::placeholder {
    color: #757575;
    font-size: 15px;
  }

  .required:after {
    content: " *";
    color: #d32f2f;
  }

  .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
  }

  .form-col {
    flex: 1;
  }


  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 24px;
    }
    
    .form-container {
      padding: 24px 16px;
    }
  }</pre></body></html>