-
Notifications
You must be signed in to change notification settings - Fork 0
/
Message.css
80 lines (67 loc) · 1.38 KB
/
Message.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
background-image: url("./Images/sebastian-svenson-d2w-_1LJioQ-unsplash.jpg");
background-position: center;
background-size: cover;
}
.form-div{
width: 25%;
height: 60%;
background-color:rgba(255, 255, 255, 0.325);
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
border-radius: 20px;
backdrop-filter: blur(5px);
}
.top{
width: 100%;
height: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 20px 20px 0px 0px;
gap: 30px;
border-bottom: 5px solid rgb(212, 255, 222);
background-color:rgba(255, 255, 255, 0.432);
}
.top h4{
letter-spacing: 2px;
font-size: 1.3rem;
color: white;
}
.form-div .bottom{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 20%;
margin-top: 60px;
gap: 50px;
}
.bottom button{
font-size: 1.5rem;
width: 15rem;
border: none;
outline: none;
background-color:rgb(212, 255, 222);
border-radius: 20px;
padding: 10px;
font-weight: bold;
transition: all .5s ease;
}
.bottom button:hover{
transform: scale(1.2);
}
.success-message p{
font-size: 1.2rem;
color: #666;
color: white;
}