/* === Body & Layout === */
body {
  background: radial-gradient(circle at top left, #0d0d0d 0%, #111 100%);
  color: #e5e5e5;
  font-family: "Fira Code", Consolas, "Courier New", Courier, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  transition: background 0.3s ease;
}

h1 {
  color: #00f2ea;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 5px #00f2ea, 0 0 10px #00f2ea, 0 0 20px #00f2ea;
}

/* === Glitch Input Wrapper === */
.glitch-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 2rem 3rem;
}

/* === Input Container === */
.input-container {
  position: relative;
  width: 22rem;
}

/* === Input Field === */
.holo-input {
  width: 100%;
  height: 3.8rem;
  background: rgba(13, 13, 13, 0.85);
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  padding: 0 1rem;
  color: var(--primary-color);
  font-family: inherit;
  font-size: 1.1rem;
  caret-color: #00f2ea;
  z-index: 10;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

.holo-input:focus {
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 2px solid #00f2ea;
}

/* === Floating Label === */
.input-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #aaa;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 11;
}

.holo-input:focus + .input-label,
.holo-input:not(:placeholder-shown) + .input-label {
  top: -1.5rem;
  left: 0;
  font-size: 0.85rem;
  opacity: 1;
  color: #00f2ea;
  text-shadow: 0 0 5px #00f2ea, 0 0 10px #a855f7;
}

/* === Input Decorations === */
.input-border {
  border: 1px solid rgba(0, 242, 234, 0.2);
  border-radius: 0.3rem;
}

.input-glow {
  background: radial-gradient(circle at center, rgba(0, 242, 234, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 0.3rem;
}

.holo-input:focus ~ .input-glow {
  opacity: 1;
}

.input-corners .corner {
  border-color: #00f2ea;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* === Message === */
.message {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
  color: #ff5252;
  height: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 3px #ff5252;
}

/* === Submit Button === */
.submit-btn {
  background: linear-gradient(135deg, #00f2ea, #a855f7);
  border: none;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px #00f2ea, 0 0 20px #a855f7;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.submit-btn:hover {
  transform: scale(1.05);
}
.container-fluid {
    max-width: 1366px;
    height: 52px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #010d16;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #091520;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #00060a, #1a1a11);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #1c4980;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}