-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
144 lines (118 loc) · 2.4 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body, html {
height: 100%;
width: 100%;
overflow-x: hidden; /* Previene el scroll horizontal */
}
.images-container {
display: flex;
width: 100%;
height: 100vh; /* Ajusta esto según lo que necesites */
position: absolute;
top: 0;
left: 0;
z-index: -1; /* Coloca las imágenes detrás del contenido */
background-color: #1B242A;
}
.image-1-icon, .image-2-icon {
width: 50%;
height: 100vh; /* O ajusta a la altura deseada */
object-fit:contain; /* Asegura que la imagen cubra el área completa, cortándose si es necesario */
}
.container {
position: relative; /* Permite que el contenedor use su propio contexto de posicionamiento */
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent; /* El fondo se hace transparente para mostrar las imágenes */
z-index: 10; /* Asegura que el formulario esté sobre las imágenes */
}
.card {
border-radius: 10px;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
width: 400px;
height: 480px;
background-color: #ffffff;
padding: 10px 30px;
overflow: hidden;
}
.card_title {
text-align: center;
padding: 10px;
}
.logo-neoris {
height: 50px;
}
.card_title h1 {
font-size: 26px;
font-weight: bold;
}
.form input {
margin: 10px 0;
width: 100%;
background-color: #e2e2e2;
border: none;
outline: none;
padding: 12px 20px;
border-radius: 4px;
}
.form button {
background-color: #4796ff;
color: #ffffff;
font-size: 16px;
outline: none;
border-radius: 5px;
border: none;
padding: 8px 15px;
width: 100%;
}
.card_terms {
display: flex;
align-items: center;
padding: 10px;
}
.card_terms input[type="checkbox"] {
background-color: #e2e2e2;
}
.card_terms span {
margin: 5px;
font-size: 13px;
}
.card a {
color: #4796ff;
text-decoration: none;
}
@media (max-width: 600px) {
.card{
width: 290px;
height: 400px;
}
.logo-neoris {
height: 35px;
}
.card_title h1 {
font-size: 20px;
}
.form input {
margin: 8px 0;
padding: 8px 16px;
}
.form button {
font-size: 14px;
padding: 6px 13px;
}
.card_terms {
padding: 8px;
}
.card_terms span {
margin: 5px;
font-size: 10px;
}
}