*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue-dark: #001141;
    --blue-mid: #7a9df0;
    --blue-light: #79a3f3;
    --blue-pale: #c8d8f8;
    --blue-bg: #dce8ff;
    --back: #f7f8fa;
    --white: #cadffc;
    --sidebar-w: 84px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    background: var(--blue-bg);
    min-height: 100vh;
    display: flex;
    color: var(--blue-dark);
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #6a96be;
    letter-spacing: -1px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 30px;
}