@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Global reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Primary accent colour used throughout the interface. This comes from the login/signup screens. */
    --accent: #1faacf;
    /* Secondary shade for gradients. */
    --accent-end: #17a3d3;
    /* Very light page background matching the login pages */
    --bg-light: #f5f8fc;
    --text-main: #0b1220;
    --text-muted: #7a8599;



}


body {
    font-family: 'Poppins', sans-serif;
    /* Use a light neutral background instead of a purple gradient to align with the login/verification screens */
    background: var(--bg-light);
    color: var(--text-main);
    padding: 80px 20px 100px; /* leave room for the fixed header and bottom nav */

    margin: 0 auto;
}


/* Typography smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family:
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Helvetica,
            Arial,
            sans-serif;
}

body.app-booting #authApp {
    display: none;
}
/* Prevent tap highlight (Android WebView) */
* {
    -webkit-tap-highlight-color: transparent;
}



.app-header {

    margin-bottom: 28px;
        position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: calc(40px + env(safe-area-inset-top)) !important;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.app-header .header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;

    display: grid;
    place-items: center;
}

.app-header:active .header-icon{
    background: rgba(255,255,255,.5);
}

.app-header:active svg{
    color: var(--accent);


}

.app-header .header-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}





/* Prevent iOS zoom on input focus */
input,
button {
    font-size: 16px;
    box-sizing: border-box;
}

.material-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;

    font-variation-settings:
            'FILL' 0,
            'wght' 100,
            'GRAD' 0,
            'opsz' 16;

    -webkit-font-smoothing: antialiased;
}


.arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}




.menu-icon {
    display: inline-block;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 15px;
    height: 2px;
    background-color: #F5F7FA;
    margin: 4px 0;

    transform-origin: center;
    transition:
            transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.18s ease;
}

/* OPEN STATE */
.menu-icon.change .bar1 {
    transform: translateY(6px) rotate(45deg) scaleY(0.75);
}

.menu-icon.change .bar2 {
    opacity: 0;
}

.menu-icon.change .bar3 {
    transform: translateY(-5px) rotate(-45deg) scaleY(0.75);
}



.bar2 {
    height: 1.5px !important;
}


.mb-30{
    margin-bottom: 30px;
}