/* 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;
}


/*========== MY CSS FORM =========*/

html {
    width: 100%;
    height: 100%;

}

body {
    width: auto;
    height: auto;
    
    background-image: url(images/background.jpg);
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
   
    margin: 80px 50px 40px 40px;  
    border-radius: 20px; 
    box-shadow: 1px 1px 20px 0px #2b2b2b;
    transition: box-shadow 0.3s ease-in-out;
    
}

.box:hover {
    box-shadow: 1px 1px 100px black;
}


.box h3 {
    color: #e34d5d;
    padding: 0px 1px 30px;
    clear: both;
    font-size: 29px;
    text-align: center;
    font-weight: 700;
}



/*asta e pentru ca sa schimbi culoarea la textul din interiorul casetelor*/

::placeholder {
    
    color: #c5c5c5;
}

.box .left {
    width: 130px!important;
    float: left;
}

.box .right {
    width: 130px!important;
    float: right;
}

.box input[type="submit"] {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    
    background-color: #1AB188;
    
    border: none;
    
    width: 100%;
    padding: 15px 0px;
    font-size: 19px;
    border-radius: 5px;
    
}




