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

body {
    font-family: 'Asap', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background: #8bc53f;
    color: white;
    padding: 10px 0;
    
}

header h1 {
    margin: 0;
    color:#333;
}

#logo img {
   
   
              
    margin-right: 80px;    
  margin-left: 50px; 
}

#logo h1 {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

/* Navigation Styles */
nav {
    background: #1878bd;
    color: white;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav ul li a:hover {
    background: #575757;
    border-radius: 5px;
}

/* Main Content Styles */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

article {
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

article h2 {
    margin-top: 0;
}

article p {
    margin: 20px 0;
}

/* Footer Styles */


footer a {
    color: #8bc53f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
#back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

#back-top a {
    display: block;
    width: 50px;
    height: 50px;
    background: #8bc53f;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* form*/

.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    background-color: #f5f5f5;
    
  }
  
  .mod-login {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    
  }
  
  .form-inline {
    display: flex;
    flex-direction: column;
  }
  
  .control-group {
    margin-bottom: 15px;
  }
  
  .input-prepend {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .input-prepend .add-on {
    color: #333;
    padding: 8px;
    border-radius: 5px 0 0 5px;
  }
  
  .input-prepend input {
    border-radius: 0 5px 5px 0;
    border: 1px solid #007bff;
    width: calc(100% - 32px);
    padding: 8px;
  }
  
  .input-prepend input::placeholder {
    color: #aaa;
  }
  
  .checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .checkbox input {
    margin-right: 10px;
  }
  
  .mod-login_submit {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .mod-login_submit button {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .mod-login_submit button:hover {
    background-color: #0056b3;
  }
  
  .unstyled {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  
  .unstyled li {
    margin-bottom: 10px;
  }
  
  .unstyled li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .unstyled li a:hover {
    color: #0056b3;
  }
  </pre></body></html>