@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*AÑADIDO */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: white;
	height: 100vh;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
	display: flex;
}
.miform {
	background: rgba(11,11,23,1.00);
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
	
.portada {
	width: 70%;
	height: 100vh;
	background-image: url("../img/kindredbackground.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

h1 {
	margin-bottom: 100px;
	font-size: 40px;
	color: white;
	text-align: center;
}
form {
	width: 70%;
	height: 500px;
	background: rgba(255, 255, 255);
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	font-size: 18px;
}
label {
	padding: 10px;
	text-align: center;
	font-size: 21px;
}
input {
	outline: none;/*eliminamos resalte azul al marcar inputs*/
	border: 0;
	border: 2px solid rgba(13,119,141,1.00);
	margin: 15px;
	color: rgba(7,128,181,1.00);
	padding: 15px;
}

    /* Cambiamos el color del placeholder   */
    ::placeholder {
color:rgba(7,128,181,1.00);
}
textarea {
	height: 100px;
	resize: none;
	background: rgba(178,206,217,0.5);
	outline: none;
}
.btn {
	border: 0;
	width: 50%;
	height: 50px;
	margin: 20px auto;
	background: rgba(84,203,208,0.6);
	color: rgba(0,16,48,1.00);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	transition: all 1s linear;
}
.btn:hover {
	background: rgba(32,36,92,1.00);
	color: white;
}
div{
	text-align: center;
	padding: 1px;
}
a{
	text-decoration: none;
	color:black;
	padding: 5px;
}
.registrar{
	font-size: 13px;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1200px) {	
	.miform{
		width: 50%;
}
	.portada{
		width: 50%;
}
	label {
		font-size: 16px;
	}
}

@media (max-width: 767px) {	
	.miform{
		width: 100%;
}
	.portada{
		width: 0%;
}
	label {
		font-size: 12px;
}
}
@keyframes btn {
  0% {
    transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
