xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image h-100">
3
<div class="mask d-flex align-items-center h-100" style="background-color: #f3f2f2;">
4
<div class="container">
5
<div class="row d-flex justify-content-center align-items-center">
6
<div class="col-12 col-lg-9 col-xl-8">
7
<div class="card" style="border-radius: 1rem;">
8
<div class="row g-0">
9
<div class="col-md-4 d-none d-md-block">
10
<img
11
src="https://mdbootstrap.com/img/Photos/Others/sidenav2.jpg"
12
alt="login form"
13
class="img-fluid" style="border-top-left-radius: 1rem; border-bottom-left-radius: 1rem;"
14
/>
15
</div>
16
<div class="col-md-8 d-flex align-items-center">
17
<div class="card-body py-5 px-4 p-md-5">
18
19
<form action="">
20
<h4 class="fw-bold mb-4" style="color: #92aad0;">Log in to your account</h4>
21
<p class="mb-4" style="color: #45526e;">To log in, please fill in these text fiels with your e-mail address and password.</p>
22
23
<div class="form-outline mb-4">
24
<input type="email" id="form2Example1" class="form-control" />
25
<label class="form-label" for="form2Example1">Email address</label>
26
</div>
27
28
<div class="form-outline mb-4">
29
<input type="password" id="form2Example2" class="form-control" />
30
<label class="form-label" for="form2Example2">Password</label>
31
</div>
32
33
<div class="d-flex justify-content-end pt-1 mb-4">
34
<button class="btn btn-primary btn-rounded" type="button" style="background-color: #92aad0;">Log in</button>
35
</div>
36
<hr>
37
<a class="link float-end" href="#!">Forgot password? Click here.</a>
38
</form>
39
40
</div>
41
</div>
42
</div>
43
</div>
44
</div>
45
</div>
46
</div>
47
</div>
48
</div>
49
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
@media (min-width: 550px) and (max-width: 750px) {
8
html,
9
body,
10
.intro {
11
height: 550px;
12
}
13
}
14
15
@media (min-width: 800px) and (max-width: 850px) {
16
html,
17
body,
18
.intro {
19
height: 550px;
20
}
21
}
22
23
a.link {
24
font-size: .875rem;
25
color: #6582B0;
26
}
27
a.link:hover,
28
a.link:active {
29
color: #426193;
30
}
1
1
Console errors: 0