File size: 4,210 Bytes
40843fa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* Resetting default styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    height: 100%; /* Set height to 100% */
}

body {
    font-family: Arial, sans-serif;
    background-image: url('../static/images/fraudapp.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    color: #333;
}

.navbar {
    background-color: #001;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: fixed;
    top: 0;
    z-index: 999; /* Ensure navbar is above other content */
}

.logo img {
    height: 50px; /* Adjust logo height */
}

.navbar-links {
    display: flex;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
}

.navbar a:hover {
    background-color: #555;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-right: 10px; /* Adjusted margin */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black; /* Dropdown background color */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 3px; /* Adjusted margin */
}

.dropdown-content a {
    color: white; /* Dropdown text color */
    padding: 12px 16px; /* Padding for normal state */
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, padding 0.3s; /* Add padding transition */
}

.dropdown-content a:hover {
    background-color: grey; /* Hover color */
    padding: 15px 16px; /* Increased padding on hover */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header styling */
.header {
    text-align: center;
    margin-top: 120px; /* Adjust as needed */
}
/* Header h1 styling */
.header h1 {
    color: #fff; /* White color */
    font-size: 80px; /* Increased font size */
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Text shadow */
    margin-top: 50px; /* Adjusted margin */
}

/* Input container styling */
.input-container {
    background-color: #2a2b2a; /* Light grey background color */
    padding: 60px; /* Increased padding */
    border-radius: 8px;
    margin: 30px auto; /* Center the container */
    max-width: 700px; /* Adjusted max width */
    max-height: 400px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); /* Box shadow */
}

/* Input group styling */
.input-group {
    margin-bottom: 20px; /* Increased margin */
}

.input-group label {
    margin-top: -10px;
    display: block;
    margin-bottom: 8px; /* Adjusted margin */
    color: #faf9f9; /* Dark gray text color */
    font-weight: bold; /* Bold font weight */
}

.input-group input {
    width: calc(100% - 24px); /* Adjusted width */
    padding: 12px; /* Increased padding */
    border: 1px solid #222323;
    border-radius: 6px;
    color: #080808; /* Dark gray text color */
}

/* Button group styling */
.button-group {
    text-align: center;
    margin-top: 20px; /* Adjusted margin */
}

/* Clear button styling */
.clear-button,
.submit-button {
    display: inline-block;
    padding: 10px 21px; /* Increased padding */
    border: none;
    border-radius: 6px;
    color: #fff; /* White text color */
    font-size: 18px; /* Increased font size */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.clear-button {
    background-color: #880303; /* Dark grey color for Clear button */
    float: left;
}

.submit-button {
    background-color: #4caf50; /* Green color for Submit button */
    float: right;
}

/* Hover effect for buttons */
.clear-button:hover {
    background-color: #030303; /* Darker grey on hover */
}

.submit-button:hover {
    background-color: #080808; /* Darker green on hover */
}