/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/* Make Ultimate Member Register button black */
.um-register .um-button,
.um-register .um-submit-btn {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* Optional: On hover, make it a dark gray */
.um-register .um-button:hover,
.um-register .um-submit-btn:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}

.um-login .um-button,
.um-login .um-submit-btn {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.um-login .um-button:hover,
.um-login .um-submit-btn:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}

/* Animate form fields when they appear */
.um-form .um-field {
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeIn 0.5s ease forwards;
}

.um-form .um-field:nth-child(1) { animation-delay: 0.1s; }
.um-form .um-field:nth-child(2) { animation-delay: 0.2s; }
.um-form .um-field:nth-child(3) { animation-delay: 0.3s; }
.um-form .um-field:nth-child(4) { animation-delay: 0.4s; }
/* Add more delays as needed */

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Round, soft-glow input styles */
.um input[type="text"],
.um input[type="email"],
.um input[type="password"],
.um select,
.um textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 50px;
  background-color: #f9f9f9;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

/* On focus: glow and subtle scaling */
.um input[type="text"]:focus,
.um input[type="email"]:focus,
.um input[type="password"]:focus,
.um select:focus,
.um textarea:focus {
  border-color: #0073aa;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 115, 170, 0.2);
  transform: scale(1.02);
}

/* Labels */
.um .um-field-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

/* Field spacing */
.um .um-field {
  margin-bottom: 20px;
}

<style>
  /* General style for all input fields */
  .teamsam-register-wrapper input {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #444;
    color: white;
    background-color: #111;
    margin-bottom: 20px;
    width: 100%;
  }

  /* Username Field */
  .teamsam-register-wrapper input[name="user_login"] {
    background-color: #1a1a1a;
    border: 2px solid white;
  }

  /* Email Field */
  .teamsam-register-wrapper input[name="user_email"] {
    background-color: #111;
    border-left: 4px solid white;
  }

  /* Password Field */
  .teamsam-register-wrapper input[name="user_password"] {
    background-color: #000;
    border: 2px dashed #888;
  }

  /* Confirm Password Field */
  .teamsam-register-wrapper input[name="confirm_user_password"] {
    background-color: #000;
    border: 2px dotted white;
  }

  /* Phone Field (if available) */
  .teamsam-register-wrapper input[name="phone_number"],
  .teamsam-register-wrapper input[name="phone"] {
    background-color: #1e1e1e;
    border: 1px solid #aaa;
    font-style: italic;
  }

  /* Submit Button: Black with White Border */
  .teamsam-register-wrapper .um-button {
    background-color: black !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }

  .teamsam-register-wrapper .um-button:hover {
    background-color: #111 !important;
    border-color: #ccc !important;
  }
</style>/* Target Forminator form */
#forminator-module-30 {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #fff;
  animation: fadeInUp 1s ease;
}

/* Form fields */
#forminator-module-30 input,
#forminator-module-30 textarea,
#forminator-module-30 select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

#forminator-module-30 input:focus,
#forminator-module-30 textarea:focus,
#forminator-module-30 select:focus {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  box-shadow: 0 0 8px #fff;
}

/* Labels */
#forminator-module-30 .forminator-label {
  color: #ddd;
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
}

/* Submit Button */
#forminator-module-30 .forminator-button {
  background: linear-gradient(135deg, #ffffff 0%, #000000 100%);
  color: #000;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#forminator-module-30 .forminator-button:hover {
  background: linear-gradient(135deg, #000000 0%, #ffffff 100%);
  color: #fff;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  #forminator-module-30 {
    padding: 20px;
  }
}/* FORM WRAPPER - Glassy, Dark, Magical */
.forminator-ui {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  color: #fff !important;
  animation: fadeInUp 1s ease;
}

/* HEADINGS */
.forminator-ui h3,
.forminator-ui h4,
.forminator-ui h2 {
  color: #ffffff !important;
  text-align: center;
}

/* LABELS */
.forminator-label {
  color: #e0e0e0 !important;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* INPUTS & TEXTAREAS */
.forminator-ui input,
.forminator-ui textarea,
.forminator-ui select {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

/* FOCUS STATES */
.forminator-ui input:focus,
.forminator-ui textarea:focus,
.forminator-ui select:focus {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  box-shadow: 0 0 10px #ffffffaa;
}

/* BUTTON */
.forminator-button,
.forminator-button-submit {
  background: linear-gradient(to right, #ffffff, #000000);
  color: #000 !important;
  font-weight: bold;
  padding: 14px 25px;
  border-radius: 14px;
  border: none;
  text-transform: uppercase;
  transition: 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
}

.forminator-button:hover,
.forminator-button-submit:hover {
  background: linear-gradient(to right, #000000, #ffffff);
  color: #fff !important;
}

/* ERROR/SUCCESS MESSAGES */
.forminator-error-message,
.forminator-success-message {
  background: rgba(0, 0, 0, 0.6);
  border-left: 5px solid #fff;
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  margin-top: 10px;
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .forminator-ui {
    padding: 20px;
  }
}







