﻿:root {
    /* Primary Colors */
    --color-primary-blue: #1a4f9f;
    --color-bright-blue: #266cd6;
    --color-light-blue: #77a3e5;
    /* Background Colors */
    --color-background: #fcfcfc;
    --color-shape: #ededed;
    /* Text Colors */
    --color-text-dark: #223263;
    --color-text-light: #9098b1;
    /* Miscellaneous Colors */
    --color-outline: #ebf0ff;
    --color-white: #ffffff;
    --color-disabled: #cccccc;
    /* Status Colors */
    --color-warning: #e02222;
    --color-success: #22e06e;
}

@import './Input.css';
@import './Site.css';

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

button {
    border: none;
    cursor: pointer;
}

.loader-wrapper {
    display: flex;
    height: 200px;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--color-primary-blue);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#toast-container {
    position: fixed;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 8px;
    right: 50%;
    transform: translateX(50%);
    z-index: 50;
}

.toast {
    margin-top: 4px;

    padding: 14px;
    border-radius: 16px;
    cursor: pointer;
}

.toast-error {
    background: var(--color-warning);
}

.toast-success {
    background: var(--color-success);
}