forked from espoo-dev/med_system_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevise.css
More file actions
73 lines (65 loc) · 1.3 KB
/
devise.css
File metadata and controls
73 lines (65 loc) · 1.3 KB
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
.container {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
min-height: 100vh;
margin: 0;
}
.auth-container {
background: white;
padding: 2.5rem;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 420px;
}
.auth-title {
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 1.5rem;
text-align: center;
}
form {
margin-bottom: 1.5rem;
}
.input {
margin-bottom: 1rem;
text-align: left;
}
.input label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}
.input input[type="email"] {
width: 94%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
}
.input_password input[type="password"] {
width: 94%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
}
.submit input[type="submit"] {
width: 100%;
background: linear-gradient(to right, #1e3a8a, #3b82f6);
color: white;
padding: 0.75rem;
border: none;
border-radius: 8px;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s ease;
}
.submit input[type="submit"]:hover {
background: linear-gradient(to right, #1e40af, #2563eb);
}