File size: 789 Bytes
b6df4f0
 
 
 
 
 
e8d1d73
b6df4f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e8d1d73
 
 
b6df4f0
e8d1d73
 
 
b6df4f0
 
e8d1d73
 
b6df4f0
 
 
 
 
 
 
 
 
 
 
 
 
 
e8d1d73
 
b6df4f0
 
e8d1d73
b6df4f0
 
 
 
 
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
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.card {
  width: 90%;
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

h1 {
  margin-bottom: 15px;
}

p {
  margin: 15px 0;
  color: #555;
}

input {
  margin: 20px 0;
  padding: 12px;
  width: 100%;
}

button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #667eea;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.85;
}

#result {
  margin-top: 25px;
  font-weight: bold;
}