LMS/E-Learning-Admin-frontend-main/src/app/login/login.component.scss
2025-09-01 19:37:35 +05:30

86 lines
2.4 KiB
SCSS

.loginmain {
// background: #090d28;
background: url("../../assets/e-learning.png") no-repeat center center;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-size: cover;
.loginformwrap {
max-width: 350px;
width: 100%;
background: linear-gradient(120deg, #fa007e63 50%, #01025e 100%);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 15px;
display: flex;
justify-content: center;
flex-direction: column;
.logoimage {
max-width: 150px;
margin: 0 auto 20px;
img {
width: 100%;
display: flex;
height: auto;
}
}
h3 {
text-align: center;
color: #fff;
font-size: 25px;
}
.loginform {
.inputtype {
margin-bottom: 15px;
width: 100%;
label {
color: #fff;
margin-bottom: 5px;
display: flex;
}
input {
padding: 10px;
border-radius: 5px;
border: 0;
color: #000000;
width: 100%;
box-sizing: border-box;
}
::placeholder{
color: #000000;
}
}
.button {
padding: 10px;
border-radius: 5px;
width: 100%;
background: linear-gradient(10deg, #E91E63 0%, #f8768f 100%);
border: 0;
color: #fff;
align-items: center;
justify-self: center;
outline: 0;
cursor: pointer;
}
a {
color: #cd85e9;
text-align: center;
float: center;
width: 100%;
padding: 5px 0;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 10px;
font-size: 15px;
font-weight: 600;
text-decoration: underline;
}
}
}
}