-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (83 loc) · 1.63 KB
/
style.css
File metadata and controls
93 lines (83 loc) · 1.63 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(to right, #ffecd2, #fcb69f);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.main {
background-color: #fff0f5;
padding: 30px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
width: 360px;
transition: all 0.3s ease-in-out;
}
.box {
display: flex;
flex-direction: column;
gap: 25px;
}
#pass-box {
display: block;
background-color: #fff;
padding: 15px;
border-radius: 12px;
font-size: 20px;
text-align: center;
font-weight: bold;
color: #6a0572;
border: 2px dashed #d291bc;
word-break: break-all;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
}
.left {
font-size: 16px;
color: #4a4a4a;
font-weight: 500;
}
.right input[type="number"] {
width: 65px;
padding: 7px;
font-size: 16px;
border: 2px solid #d291bc;
border-radius: 10px;
outline: none;
text-align: center;
background-color: #fff;
color: #6a0572;
}
.right input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
accent-color: #ff6f61;
}
button#btn {
padding: 12px 24px;
font-size: 17px;
background-color: #ff6f61;
color: white;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
margin: auto;
display: block;
font-weight: 600;
letter-spacing: 0.5px;
}
button#btn:hover {
background-color: #d64a4a;
transform: scale(1.05);
}