/* Page-level layout only — component styles live in their own folders */

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #333;
}

#loginActivesComponent {
    flex: 1;
}
