add: login page

This commit is contained in:
2025-07-05 05:47:53 +05:00
parent 7bb8fd0150
commit e21a51482a
11 changed files with 2627 additions and 149 deletions

View File

@ -1,62 +1,41 @@
/*
* @NOTE: Prepend a `~` to css file paths that are in your node_modules
* See https://github.com/webpack-contrib/sass-loader#imports
*/
@font-face {
font-family: 'Benzin-Bold';
src: url('../../assets/fonts/benzin-bold.eot'); /* IE 9 Compatibility Mode */
src:
url('../../assets/fonts/benzin-bold.eot?#iefix') format('embedded-opentype'),
/* IE < 9 */ url('../../assets/fonts/benzin-bold.woff2') format('woff2'),
/* Super Modern Browsers */ url('../../assets/fonts/benzin-bold.woff')
format('woff'),
/* Firefox >= 3.6, any other modern browser */
url('../../assets/fonts/benzin-bold.ttf') format('truetype'),
/* Safari, Android, iOS */
url('../../assets/fonts/benzin-bold.svg#benzin-bold') format('svg'); /* Chrome < 4, Legacy iOS */
}
body {
position: relative;
color: white;
height: 100vh;
background: linear-gradient(
200.96deg,
#fedc2a -29.09%,
#dd5789 51.77%,
#7a2c9e 129.35%
);
font-family: sans-serif;
background: linear-gradient(200.96deg, #000000, #3b4187);
font-family: 'Benzin-Bold' !important;
overflow-y: hidden;
display: flex;
justify-content: center;
align-items: center;
}
button {
background-color: white;
padding: 10px 20px;
border-radius: 10px;
border: none;
appearance: none;
font-size: 1.3rem;
box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.12),
0px 18px 88px -4px rgba(24, 39, 75, 0.14);
transition: all ease-in 0.1s;
cursor: pointer;
opacity: 0.9;
p {
font-family: 'Benzin-Bold' !important;
}
button:hover {
transform: scale(1.05);
opacity: 1;
h1 {
font-family: 'Benzin-Bold' !important;
}
li {
list-style: none;
h2 {
font-family: 'Benzin-Bold' !important;
}
a {
text-decoration: none;
height: fit-content;
width: fit-content;
margin: 10px;
}
a:hover {
opacity: 1;
text-decoration: none;
}
.Hello {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
h3 {
font-family: 'Benzin-Bold' !important;
}