forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
118 lines (99 loc) · 1.7 KB
/
signup.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
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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
.main-content-login {
background-color: brown;
padding: 4rem 0;
font-family: 'Noto Sans', sans-serif;
}
.left-login img {
width: 100%;
transition: transform 0.3s ease;
}
.left-login img:hover{
transform: rotate(-5deg) scale(1.1);
}
.right-login .title {
color: rgb(208, 50, 50);
font-weight: 700;
}
.card-body {
padding: 7%;
}
.textfield {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin: 20px 0px;
position: relative;
}
.textfield>label {
font-weight: bold;
}
.textfield>input {
width: 100%;
border: none;
border-radius: 10px;
padding: 15px;
background: #E6E6FA;
color: #030707de;
font-size: 12pt;
box-shadow: 0px 2px 5px #00000056;
outline: none;
}
.textfield>input::placeholder {
color: #000000;
}
.btn-login {
width: 85%;
padding: 16px 0;
margin: 25px;
border: none;
border-radius: 8px;
outline: none;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 3px;
color: white;
background: rgb(208, 50, 50);
box-shadow: 0px 10px 40px -12px #b10f1f85;
}
.btn-login:hover {
background: rgba(208, 50, 50, 0.9);
}
#signup-hide {
right: 20px;
position: absolute;
bottom: 10%;
}
.hide-icon {
font-size: 27px;
}
.card {
box-shadow: 0px 10px 50px #000000a4;
width: 80%;
}
@media screen and (width <=600px) {
.card {
width: 95%;
}
}
@media screen and (width < 992px) {
.left-login img {
width: 60%;
}
.main-content-login {
padding-bottom: 4rem;
padding-top: 0;
}
}
@media screen and (width >= 2000px)
{
.left-login img{
width: 70%;
}
}
.right-login h1.text-center{
font-size:13px;
font-weight: bold;
}