html, body {
    margin: 0;
    min-height: 100%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: #ffffff;
}

a {
    color: inherit;
}

* {
    box-sizing: border-box;
}

#app {
    min-height: 100vh;
}

.boot-loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boot-loader-spinner {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 3px solid rgba(192, 74, 110, 0.16);
    border-top-color: #c04a6e;
    animation: boot-spin 0.85s linear infinite;
}

@keyframes boot-spin {
    to {
        transform: rotate(360deg);
    }
}
