File size: 829 Bytes
90653e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Center the text input fields */
input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Add a gradient background */
body {
    background: linear-gradient(to bottom right, #1a237e, #3949ab);
}

/* Center the login box */
.login-box {
    margin: auto;
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    /* text-align: center; */
    box-shadow: 0px 0px 10px #888;
}

/* Style the login button */
.login-button {
    background-color: #4caf50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Style error messages */
.error-message {
    color: red;
}