2026-02-25 17:33:37 -06:00
|
|
|
<template>
|
|
|
|
|
<div class="auth-container">
|
|
|
|
|
<slot/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.auth-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
min-height: 100vh;
|
2026-04-05 00:36:20 -05:00
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 3rem;
|
2026-02-25 17:33:37 -06:00
|
|
|
}
|
|
|
|
|
</style>
|