/* Typography */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding: 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  margin-bottom: 1.2rem;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color:#fff;
}

body.dark-mode h2#swal2-title.swal2-title{
    color:#333!important;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

@media screen and (max-width: 767px){
h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.9375rem; }
h5 { font-size: 0.8rem; }
h6 { font-size: 0.75rem; }

body {
    font-size: 15px;
  }
 p {
     font-size:14px;
 }
}

/* Paragraphs */
p {
  margin-bottom: 1.2em;
}

/* Links */
a {
  color: #7f00ff;
  text-decoration: none;
}

body.dark-mode a {
    color: #00c6ff;
}

/* Inputs & Textareas */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="url"],
input[type="number"],
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="url"],
body.dark-mode input[type="number"],
body.dark-mode input[type="date"],
body.dark-mode input[type="password"],
body.dark-mode select,
body.dark-mode textarea {
    background: #333;
    color: #fff;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #f6f6f6 !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #0073e6;
  outline: none;
}