@import "tailwindcss";
/* globals.css */
/* @import './font-face.css'; */

/* globals.css or inside your layout/global styles */
html, body {
  height: 100%;
   margin: 0;
  overflow: hidden;
}

:root {
  font-family: var(--font-plus-jakarta);
  --background: #F3F8FD !important;
  --foreground: #171717;
}

input::placeholder {
  color: #99AED0;
  opacity: 1; /* Optional: makes sure it's fully visible */
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
} */

body{
  background: var(--background);
  color: var(--foreground);
  /* font-family: Arial, Helvetica, sans-serif; */
}

/* Make all MUI form label asterisks red */
.MuiInputLabel-asterisk {
  color: red;
}
/* .css-1ll44ll-MuiOutlinedInput-notchedOutline {
  border-color: white !important;
} */
/* .css-1dhj8uo-MuiPaper-root {
  background-color: transparent !important;
} */
 .MuiContainer-root {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 10px !important 
}

.MuiContainer-root .MuiStack-root > :not(style) ~ :not(style) {
  /* margin-top: 13px !important;  */
}
.MuiTypography-root.css-wkaihw-MuiTypography-root {
    margin-top: 10px !important;
}
@media (max-width: 600px) {
  .MuiContainer-root {
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 2px !important; /* optional: slightly more breathing room on mobile */
  }
}
/* */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* hire developer home page  */
@keyframes showProfile {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.animate-showProfile {
  animation: showProfile 3s ease-in-out infinite;
}

html {
  scroll-behavior: smooth !important;
}
