body {
    font-family: 'Inter'
    sans-serif; color: #f5f5f5;
    background-color: #101010;
}
hr {
    border: 1px solid #f5f5f5;
}
a {
    color: #fff;
}
input {
    color: #fff;
    background-color: #010101;
    border-radius: 2rem;
    border-color: #fff;
    border-style: solid;
    border-width: 1px;
    min-width: 450px;
    width: 50%;
    height: 40px;
}

h2 {
    color: #fff;
    padding-left: 10px;
}


.copy-only {
    width: 80%;
    
}

.copy-btn {
    height: 40px;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    cursor: pointer;
}

.copy-btn .btn {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.copy-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: rgba(40, 143, 212, 0.445);
    color: #fff;
    width: 500px;
    text-align: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.logo {
    text-decoration: none;
}
.modal-content, .modal-header, .modal-body {
    background-color: #101010;
    color: #fff;
}


/* ----------------------------------------------------------------------- */

/* Style your container background */
.custom-form-container {
  background-color: #1a1a1a; /* Dark background example */
  padding: 20px;
  border-radius: 8px;
}

/* Style your text color */
.custom-label {
  color: #00ffcc; /* Neon teal text example */
  font-family: Arial, sans-serif;
  display: block;
  margin-bottom: 8px;
}

/* Style the inputs */
.custom-input {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #555555;
  padding: 10px;
  width: 100%;
}
