-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-account.css
55 lines (48 loc) · 873 Bytes
/
new-account.css
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
.newaccount {
max-width: 600px;
margin: 30px;
height: 77.9vh;
}
input .newaccount[type="email"] {
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
width: 100%;
max-width: 500px;
}
.newaccount input[type="submit"] {
background-color: #2457cf;
color: white;
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
.newaccount input[type="submit"]:hover {
background-color: #444;
}
.newaccount label {
font-size: 14px;
margin-bottom: 10px;
display: inline;
text-align: left;
}
.logout {
position: absolute;
top: 60px;
right: 30px;
}
.logout button {
padding: 5px 5px;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout button:hover {
background-color: #2457cf;
color: #ffffff;
}