61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<template>
|
|
<div class="container-fluid">
|
|
<div class="welcome">
|
|
<div class="text-container">
|
|
<h1>¡Bienvenida!</h1>
|
|
<br />
|
|
<p>
|
|
Su formulario se ha recibido correctamente y en breve confirmaremos su
|
|
cuenta. Recibirá un correo para confirmar que su cuenta de cooperativa
|
|
se ha activado.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container-fluid {
|
|
margin-top: 5rem;
|
|
margin-bottom: 5rem;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: linear-gradient($color-consumo-base-light, $color-bg-light);
|
|
border-radius: 1rem;
|
|
padding: 2rem;
|
|
gap: 3rem;
|
|
margin: 2rem 0 4rem;
|
|
color: $color-primary;
|
|
|
|
@include mobile {
|
|
margin-top: 7rem;
|
|
}
|
|
}
|
|
|
|
.welcome {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 600px;
|
|
color: $color-primary;
|
|
font-weight: 400;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.text-container {
|
|
max-width: 500px;
|
|
p,
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
</style>
|