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

70 lines
1.9 KiB
SCSS

.loginmain {
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%);
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;
background: #fff;
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: right;
justify-self: right;
outline: 0;
cursor: pointer;
}
}
}
}