 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

 :root {
     --background: 0 0% 100%;
     --foreground: 215 25% 15%;
     --primary: 207 90% 54%;
     --primary-foreground: 0 0% 100%;
     --primary-light: 207 90% 64%;
     --primary-dark: 207 90% 44%;
     --secondary: 174 72% 56%;
     --secondary-foreground: 215 25% 15%;
     --secondary-light: 174 72% 66%;
     --secondary-dark: 174 72% 46%;
     --accent-warning: 42 87% 55%;
     --accent-success: 142 76% 47%;
     --accent-danger: 0 84% 60%;
     --accent-info: 207 90% 77%;
     --muted: 210 17% 95%;
     --muted-foreground: 215 16% 47%;
     --card: 0 0% 100%;
     --card-foreground: 215 25% 15%;
     --popover: 0 0% 100%;
     --popover-foreground: 215 25% 15%;
     --border: 214 15% 91%;
     --input: 214 15% 91%;
     --ring: 207 90% 54%;
     --destructive: 0 84% 60%;
     --destructive-foreground: 0 0% 100%;
     --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
     --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-light)));
     --gradient-hero: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
     --gradient-card: linear-gradient(145deg, hsl(0 0% 100%), hsl(210 17% 98%));
     --shadow-soft: 0 2px 8px -2px hsl(var(--primary) / .1);
     --shadow-medium: 0 4px 16px -4px hsl(var(--primary) / .15);
     --shadow-strong: 0 8px 32px -8px hsl(var(--primary) / .2);
     --shadow-glow: 0 0 24px hsl(var(--primary) / .15);
     --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
     --transition-quick: all .15s ease-out;
     --radius: .5rem;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     margin-bottom: 0 !important;
 }

 body {
     font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 }

 .wrapper-alert {
     display: flex;
     justify-content: space-between;
     position: fixed;
     width: calc(100% - 1rem);
     top: 0rem;
     margin: 0.5rem;
     z-index: 1000;
     border-radius: 0 !important;
     background: white !important;
     color: black !important;
     border: solid 1px;
 }

 .wrapper-alert--error {
     border-left: 8px solid hsl(var(--accent-danger));
 }

 .wrapper-alert--success {
     border-left: 8px solid hsl(var(--accent-success));
 }

 .wrapper-alert__body {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .wrapper-alert__icon {
     width: 2.5rem;
     height: 2.5rem;
 }

 .font-bold {
     font-weight: 700;
 }

 .font-semibold {
     font-weight: 600;
 }

 .font-medium {
     font-weight: 500;
 }

 .loading-container {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100vh;
     z-index: 9999;
     background-color: rgba(0, 0, 0, .5);
     position: absolute;
     top: 0;
     left: 0;
 }

 .loading {
     padding: 2.5rem;
 }


 @media (min-width: 1024px) {
     .wrapper-alert {
         display: flex;
         justify-content: space-between;
         position: fixed;
         width: calc(50% - 2.06rem);
         top: 0rem;
         margin: 0.5rem;
         z-index: 1000;
         border-radius: 0 !important;
         background: white !important;
         color: black !important;
         border: solid 1px;
     }

     .wrapper-alert--error {
         border-left: 8px solid hsl(var(--accent-danger));
     }

     .wrapper-alert--success {
         border-left: 8px solid hsl(var(--accent-success));
     }
 }