158 lines
2.7 KiB
CSS
Raw Normal View History

2023-10-14 19:08:12 +05:30
* {
box-sizing: border-box;
}
2023-10-14 19:00:07 +05:30
2023-10-09 20:21:28 +05:30
body {
2023-10-14 19:00:07 +05:30
background-color: dimgrey;
display: flex;
margin-top: 25px;
align-items: center;
justify-content: center;
background-image: url("bg.jpg");
background-size: cover;
background-position: center;
2023-10-15 01:31:54 +05:30
background-repeat: no-repeat;
2023-10-14 19:00:07 +05:30
}
.wrapper {
display: flex;
width: 90vw;
height: 90vh;
align-items: center;
justify-content: center;
}
.container {
display: flex;
background-color: transparent;
2023-10-14 19:08:12 +05:30
backdrop-filter: blur(20px);
2023-10-14 19:00:07 +05:30
justify-content: center;
align-items: center;
2023-10-14 19:08:12 +05:30
width: 500px;
height: 450px;
2023-10-14 19:00:07 +05:30
flex-direction: column;
padding: 70px;
2023-10-14 19:08:12 +05:30
padding-bottom: 90px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
2023-10-14 19:00:07 +05:30
row-gap: 8px;
border-radius: 50px;
}
#login {
2023-10-14 19:08:12 +05:30
display: block;
2023-10-14 19:00:07 +05:30
text-align: center;
font-family: 'Pixelify Sans', cursive;
font-size: 50px;
2023-10-14 19:08:12 +05:30
text-shadow: 2px 2px 5px rgb(0, 0, 0);
2023-10-14 19:00:07 +05:30
color: white;
}
.input {
width: 300px;
height: 30px;
background-color: transparent;
2023-10-14 19:08:12 +05:30
color: rgb(255, 255, 255, 0.8);
2023-10-14 19:00:07 +05:30
box-shadow: 2px 2px 3px rgb(0, 0, 0, 0.5);
2023-10-14 19:08:12 +05:30
border: none;
2023-10-14 19:00:07 +05:30
border-top: rgba(255, 255, 255, 0.2) 2px solid;
border-left: rgb(255, 255, 255, 0.2) 2px solid;
border-radius: 10px;
2023-10-14 19:08:12 +05:30
padding-left: 5px;
}
.idiv p {
color: white;
font-family: 'Pixelify Sans', cursive;
margin-left: 5px;
2023-10-14 19:00:07 +05:30
}
2023-10-14 19:08:12 +05:30
#username::placeholder {
color: rgb(255, 255, 255, 0.5);
padding-left: 5px;
}
2023-10-14 19:00:07 +05:30
2023-10-14 19:08:12 +05:30
#password::placeholder {
color: rgb(255, 255, 255, 0.5);
padding-left: 5px;
2023-10-14 19:00:07 +05:30
}
.idiv {
display: flex;
flex-direction: column;
row-gap: 10px;
justify-content: center;
padding: 7px;
}
2023-10-14 19:08:12 +05:30
.idiv p{
padding: none;
margin: none;
display: absolute;
translate: 0px 12px;
2023-10-14 19:00:07 +05:30
}
#loginb {
background-color: transparent;
2023-10-14 19:08:12 +05:30
color: rgb(255, 255, 255, 0.8);
2023-10-14 19:00:07 +05:30
padding: 7px;
margin-top: 20px;
margin-bottom: 20px;
width: 150px;
box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.5);
translate: 0px -5px;
font-family: 'Pixelify Sans', cursive;
font-size: 20px;
border-radius: 10px;
}
2023-10-14 19:08:12 +05:30
#loginb:active {
background-color: rgb(155, 155, 155, 0.3);
}
.help {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
2023-10-15 01:31:54 +05:30
2023-10-14 19:08:12 +05:30
.help div{
display: flex;
width: 50%;
justify-content: center;
}
2023-10-15 01:31:54 +05:30
.error label {
position: absolute;
display: block;
justify-content: center;
translate: -50% 3px;
color: rgba(184, 156, 255, 0.9);
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: bold;
font-weight: bold;
}
2023-10-14 19:08:12 +05:30
a {
text-decoration: none;
color: rgba(255, 255, 255, 0.5);
text-align: center;
font-family: 'Poppins', sans-serif;
font-size: 12px;
}
a:active {
color: rgb(196, 196, 196, 10);
2023-10-15 01:31:54 +05:30
}
footer{
position: fixed;
bottom: 0px;
background-color: rgb(12, 12, 12);
height: 50px;
width: 100vw;
2023-10-14 19:00:07 +05:30
}