@tailwind base;
@tailwind components;
@tailwind utilities;


@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-chubby/css/uicons-regular-chubby.css');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Schibsted Grotesk", sans-serif;
    
}

body {
    background-color: #f1f1f1;
}

#root {
    --primary-color: #285ffa;
    --secondary--color: #163eaf;
}


.success {
        color: green;
        font-weight: bold;
        margin: 10px 0;
}
.error {
        color: red;
        font-weight: bold;
        margin: 10px 0;
}

/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    z-index: 9999; /* Make sure it appears on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px; /* Adjust the spinner size as needed */
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content {
    display: none; /* Hide the content initially */
}