-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
86 lines (83 loc) · 1.37 KB
/
signup.css
File metadata and controls
86 lines (83 loc) · 1.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
.signup{
display: flex;
}
.signup-div{
max-width: 400px;
}
.signup-image{
width: 100%;
height: 100%;
object-fit: contain;
}
.card{
width: 450px;
margin-top: 50px;
border: 1px solid #eeeeee;
box-shadow: -10px 6px 5px 0px rgba(176,164,176,1) !important;
transition: all .3s ease-in-out !important;
padding: 10px 40px ;
}
.card-header{
text-align: center;
}
.card-content-div{
display: flex;
flex-direction: column;
padding: 10px;
}
.card-content-div > label{
font-family: 'Montserrat', sans-serif;
margin-bottom: 4px;
}
.card-input{
width: 97%;
padding : 10px 5px;
}
.card-btn{
background-color: #E83A59;
color: white;
width: 100%;
padding : 10px 5px;
border-radius: 20px;
font-size: medium;
font-family: 'Montserrat', sans-serif;
}
.card-name{
display: flex;
}
.card-first{
margin-right: 10px;
width: 50%;
}
.card-last{
width: 50%;
}
.signin-text{
text-decoration: none;
color: #FF6263;
}
.successMessage{
background-color: green;
position: absolute;
top: 0px;
right: 0px;
}
.errorMessage{
background-color: red;
position: absolute;
top: 0px;
right: 0px;
}
.message{
color: white;
}.card-btn,
input
{
outline-style: none;
}
@media (max-width:1000px){
.signup{
flex-direction: column;
align-items: center;
}
}