feat : add carousel in login page

feat : add disclaimer,policy in login page
This commit is contained in:
2025-07-01 12:00:01 +05:30
parent 6028ed9f5a
commit a46670be1f
8 changed files with 359 additions and 765 deletions

View File

@@ -27,3 +27,36 @@
}
}
.carousel-wrapper {
width: 100%;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
}
.gradient-control {
width: 15%;
height: 100%;
position: absolute;
top: 0;
z-index: 2;
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.6;
color: white;
pointer-events: all;
}
/* First control is left */
.gradient-control:first-of-type {
left: 0;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0001));
}
/* Last control is right */
.gradient-control:last-of-type {
right: 0;
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0001));
}