

/* Admin Login - Remove this if you dont want background overlay over the image or adjust per your needs */
body.login_admin:before {
    content: " ";
    background: linear-gradient(29deg,rgba(255, 255, 255, 0.5) 0%, rgba(255, 230, 220, 0.4) 53%, rgba(250, 250, 250, 0.3) 100%);
    min-height: 100%;
    min-width: 100%;
    position: absolute;
}
body.login_admin {
  background: url('https://goodbyeskyharbor.com/wp-content/uploads/2025/09/Peace-2.jpg') no-repeat center center fixed; /* The full image url*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Ticket Form background*/
body.ticket_form:before {
    content: " ";
    background: rgba(250, 250, 250, 0.8);
    min-height: 100%;
    min-width: 100%;
    position: absolute;
}
body.ticket_form {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: url('https://goodbyeskyharbor.com/wp-content/uploads/2025/09/traffic.jpg') no-repeat center center fixed; /* The full image url*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  background-size: cover;
}


/* Ticket Form button*/
.ticket_form #form_submit {
    width: 200px;
    height: 50px;
    font: bold 16px sans-serif;
    border: none;
    outline: none;
    color: #fff;
    background: #293E91;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.ticket_form #form_submit:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.ticket_form #form_submit:active {
    color: #1F2555
}

.ticket_form #form_submit:active:after {
    background: transparent;
}

.ticket_form #form_submit:hover:before {
    opacity: 1;
}

.ticket_form #form_submit:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }

}

/* Client login page only */
body.customers_login {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: fixed;
}

/* Top header bar */
body.customers_login .navbar-default,
body.customers_login nav.navbar {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none !important;
    box-shadow: none !important;
}

/* Login box/card */
body.customers_login .authentication-form,
body.customers_login .panel_s,
body.customers_login .panel {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

/* "Please login" heading and similar headings */
body.customers_login h1,
body.customers_login h2,
body.customers_login h3,
body.customers_login h4,
body.customers_login .tw-text-neutral-700,
body.customers_login .tw-text-neutral-800,
body.customers_login .tw-text-neutral-900 {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75) !important;
}

/* Labels above fields */
body.customers_login label,
body.customers_login .control-label {
    color: #1f2937 !important;
}

/* Optional: make inputs a touch softer */
body.customers_login input,
body.customers_login select,
body.customers_login textarea {
    background: rgba(255, 255, 255, 0.92) !important;
}