login y restablecer pages

This commit is contained in:
María
2025-09-10 14:13:41 +02:00
parent 5c83090685
commit b6358f30b9
12 changed files with 119 additions and 73 deletions

View File

@@ -22,12 +22,18 @@ export default {
<style lang="scss" scoped>
.submit-btn {
background-color: $color-orange;
color: $color-light;
border: none;
border-radius: 5px;
background: $color-button;
color: #fff;
padding: 0.75rem 1.5rem;
border: 1px solid transparent;
border-radius: 0.5rem;
cursor: pointer;
transition: background 0.2s ease;
text-transform: uppercase;
padding: 15px 20px;
margin-top: 15px;
&:hover {
background: white;
color: $color-button;
border: 1px solid $color-button;
}
}
</style>