File size: 1,601 Bytes
178fabd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(120deg, #f2f4f7, #e6f0ff);
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 720px;
    margin: 60px auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.container:hover {
    transform: scale(1.01);
}

h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 600;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

input[type="text"] {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 1.5px solid #d0d7e2;
    border-radius: 8px;
    background-color: #f9fbff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus {
    border-color: #5c9ded;
    outline: none;
    box-shadow: 0 0 6px rgba(92, 157, 237, 0.4);
}

button {
    padding: 14px 22px;
    background-color: #5c9ded;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #3b7bd9;
    transform: scale(1.03);
}

.result {
    background: #eef6ff;
    padding: 25px;
    border-radius: 10px;
    font-size: 17px;
    line-height: 1.7;
    color: #2d3b45;
    border-left: 5px solid #5c9ded;
}