input {
    background:#fff;
    color:#333;
    border-radius:25px!important;
    margin-bottom:10px;
}
body.dark-mode input{
    background:#333!important;
    color:#fff;
}
input::placeholder {
    color: #333;
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dark mode placeholder styling */
body.dark-mode input::placeholder {
    color: #fff;
}
select {
    background:#fff;
    color:#333;
    margin-bottom:10px;
    border-radius:25px!important;
    width: 100%;
    padding-left: 7px;
    font-size: 16px;
}
body.dark-mode select{
    background:#333;
    color:#fff;
}

select option:disabled {
  display: none;
}

select option[selected] {
  color: #333;
}
/* Style for the Go back text */
.center-text {
  text-decoration: underline;
  color: #333;
  cursor: pointer;
}

.center-text:hover {
  color: #7f00ff;
}
body.dark-mode .center-text{
    color:#fff;
}
body.dark-mode .center-text:hover{
    color:#00c6ff;
}
input[type="date"] {
    background: #fff;
    color: #333!important;
    margin-bottom: 10px;
    border-radius: 25px!important;
}
body.dark-mode input[type="date"] {
    background: #333;
    color: #fff!important;
}

.date-input-wrapper {
    position: relative;
}
.date-input-wrapper input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Hide the browser's default text color (works in some browsers like Chrome) */
.date-input-wrapper input::-webkit-datetime-edit {
    color: transparent;
}

/* When the input is focused or has a valid value, set the text color */
.date-input-wrapper input:focus::-webkit-datetime-edit,
.date-input-wrapper input:valid::-webkit-datetime-edit {
    color: #333!important; /* Ensure it's visible in light mode */
}
body.dark-mode .date-input-wrapper input:focus::-webkit-datetime-edit,
body.dark-mode .date-input-wrapper input:valid::-webkit-datetime-edit {
    color: #fff!important; /* Keep the text white in dark mode */
}
.date-input-wrapper .fake-placeholder {
    position: absolute;
    top: 40%;
    left: 12px;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
    font-size: 16px;
}
body.dark-mode .date-input-wrapper .fake-placeholder {
    color: #fff;
}
/* Hide fake placeholder when input is focused or has a value */
.date-input-wrapper input:focus + .fake-placeholder,
.date-input-wrapper input:valid + .fake-placeholder {
    display: none;
}

label {
    color:#333;
}
body.dark-mode label {
    color:#fff;
}
.custom-full i{
    color:#7f00ff;
}
body.dark-mode .custom-full i{
    color:#00c6ff;
}
.custom-full h1{
    color:#333;
}
body.dark-mode .custom-full h1{
    color:#fff;
}
.custom-full p{
    color:#333;
}
body.dark-mode .custom-full p{
    color:#fff;
}
.subscribe-full {
    margin-top:3px!important;
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/wp-content/plugins/beyond-tube/images/bt-my-account.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

/* Gradient overlay */
.subscribe-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

/* Make sure the form stays above the overlay */
.form-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}
.sign-up{
    box-sizing: border-box; 
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding-left: 30px;
    padding-right:30px;
    padding-bottom:20px;
    padding-top:40px;
    max-width:400px;
    margin: 0 auto;
}
body.dark-mode .sign-up{
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    padding: 30px;
    margin: 0 auto;
    color: #f0f0f0;
}
.sign-up h1{
    color:#333;
}
body.dark-mode .sign-up h1{
    color:#fff;
}
.sign-up a{
    color:#7f00ff;
}
body.dark-mode .sign-up a{
    color:#00c6ff;
}
@media screen and (max-width: 1024px) {
    .top-bar-mobile {
     padding-bottom:7px!important;
     padding-left:10px!important;
     padding-right:10px!important;
    }
}