/*
Theme Name: ShortlyURL
Theme URI: https://shortlyurl.site
Author: Sunanda Kumar
Description: A bulk URL shortener theme with redirection, shortcode analytics, and admin setup.
Version: 1.0
*/
.button-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.submit-btn-link {
  text-decoration: none;
}
footer a {
  color: #0ef;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.contact-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
.contact-box {
  background: #1f1f1f;
  color: #f1f1f1;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.light-mode .contact-box {
  background: #fff;
  color: #000;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #2b2b2b;
  color: #fff;
}
.light-mode .contact-form input,
.light-mode .contact-form textarea {
  background: #f5f5f5;
  color: #000;
}
.contact-form .submit-btn {
  background: #0ef;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form .submit-btn:hover {
  background: #0cc;
}
.two-col {
  display: flex;
  gap: 10px;
}
.two-col input {
  flex: 1;
}
@media (max-width: 600px) {
  .two-col {
    flex-direction: column;
  }
}




