@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&family=Roboto:wght@300;400;500;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* -------------------------
   Global Reset & Base
------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    min-height: 100%;
    padding: 20px;
    background: #7a7a7a;
}

:root {
    --primary: #820b5c;
    --secondary: #1a0262;
    --white: #ffffff;
    --black: #000000;
    --gray: #f6f7fb;
    --light-gray: #f0f0f0;
    --dark-gray: #484b57;
    --light: #ddeeff;
    --dark: #1a202c;
    --text-color: #4b5563;
    --bg-color: #f8fafc;
}
main {
    background: rgb(254, 254, 254);
    box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.23) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.66) inset,
        0 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 20px 20px 0 0;
}
.main-content {
    background-color: #ffffff;
}

.bg-primary {
    background: #1a0262 !important;
}
.bg-secondary {
    background: #820b5c !important;
}
.text-primary {
    color: #1a0262 !important;
}
.text-secondary {
    color: #820b5c !important;
}
