Changements login + register

This commit is contained in:
gokhoal
2026-04-30 17:49:44 +02:00
parent 4d80f26f25
commit c6950e863a
6 changed files with 342 additions and 81 deletions
+112 -45
View File
@@ -1,85 +1,152 @@
.bg {
--background: linear-gradient(180deg, #e6dede, #e58a8a);
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');
/* ---- Page background ---- */
ion-content.bg {
--background: transparent;
--overflow: hidden;
&::before {
content: '';
position: fixed;
inset: 0;
background: linear-gradient(
160deg,
#f9e8e8 0%,
#f2c4c4 35%,
#e89898 70%,
#d97070 100%
);
z-index: -1;
}
}
/* ---- Centered container ---- */
.container {
text-align: center;
padding-top: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100%;
padding: 40px 24px;
font-family: 'Nunito', sans-serif;
gap: 10px;
}
/* ---- Logo box ---- */
.logo-box {
width: 90px;
height: 90px;
margin: 0 auto 10px;
border-radius: 20px;
background: #f2eaea;
width: 80px;
height: 80px;
background: #ffffff;
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 8px 8px 15px #d1bcbc,
-8px -8px 15px #ffffff;
box-shadow: 0 4px 18px rgba(180, 80, 80, 0.18);
overflow: hidden;
margin-bottom: 4px;
img {
width: 50px;
width: 52px;
height: 52px;
object-fit: contain;
}
}
/* ---- App title ---- */
h1 {
color: #b86b6b;
margin-bottom: 30px;
font-family: 'Nunito', sans-serif;
font-size: 28px;
font-weight: 800;
color: #b05050;
margin: 0 0 10px;
letter-spacing: 0.5px;
}
/* ---- White card ---- */
.card {
width: 85%;
max-width: 320px;
margin: auto;
padding: 25px;
border-radius: 20px;
background: #f2eaea;
box-shadow: 10px 10px 20px #cfaeae,
-10px -10px 20px #ffffff;
width: 100%;
max-width: 340px;
background: rgba(255, 255, 255, 0.88);
border-radius: 24px;
padding: 28px 24px 32px;
box-shadow: 0 8px 32px rgba(180, 80, 80, 0.12);
display: flex;
flex-direction: column;
gap: 14px;
h3 {
color: #c27a7a;
margin-bottom: 20px;
font-weight: normal;
font-family: 'Nunito', sans-serif;
font-size: 16px;
font-weight: 700;
color: #b05050;
text-align: center;
margin: 0 0 4px;
}
}
/* ---- Inputs ---- */
.input {
margin: 10px 0;
border-radius: 20px;
--background: #f2eaea;
--padding-start: 15px;
box-shadow: inset 5px 5px 10px #d1bcbc,
inset -5px -5px 10px #ffffff;
--background: rgba(255, 255, 255, 0.95);
--border-radius: 50px;
--padding-start: 18px;
--padding-end: 18px;
--inner-padding-end: 0;
--highlight-color-focused: #d97070;
border-radius: 50px;
box-shadow: 0 2px 8px rgba(180, 80, 80, 0.10);
overflow: hidden;
ion-input {
color: #a35c5c;
--placeholder-color: #c9a0a0;
--placeholder-opacity: 1;
--color: #6b3030;
font-family: 'Nunito', sans-serif;
font-size: 15px;
font-weight: 600;
caret-color: #d97070;
}
}
/* ---- Login button ---- */
.btn {
margin-top: 15px;
--background: #b86b6b;
--border-radius: 20px;
--background: #b05050;
--background-activated: #903838;
--border-radius: 50px;
--box-shadow: 0 4px 16px rgba(176, 80, 80, 0.35);
--color: #ffffff;
font-family: 'Nunito', sans-serif;
font-size: 16px;
font-weight: 700;
letter-spacing: 0.3px;
margin-top: 6px;
height: 48px;
transition: transform 0.15s ease, box-shadow 0.15s ease;
box-shadow: 5px 5px 10px #a45f5f,
-5px -5px 10px #ff9c9c;
&:active {
transform: scale(0.97);
--box-shadow: 0 2px 8px rgba(176, 80, 80, 0.25);
}
}
/* ---- Sign-up link ---- */
.signup {
margin-top: 20px;
color: white;
text-align: center;
font-family: 'Nunito', sans-serif;
font-size: 14px;
font-weight: 700;
color: #b05050;
line-height: 1.7;
margin-top: 6px;
a {
color: white;
font-weight: bold;
color: #b05050;
font-weight: 800;
text-decoration: underline;
text-underline-offset: 2px;
&:hover {
color: #903838;
}
}
}