﻿/* CSS Document */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: linear-gradient(to right, #b92b27, #1565c0)
}

.card{
 /*   margin-bottom:20px; */
	margin-top:60px;
    border:none;
}

.box {
   /* width: 500px; */
	 width: 50%; 
    padding: 40px;
    position: absolute; 
/* 	position:relative */
 /*   top: 2%; */
    left: 20%; 
    background: #191919;
    ;
    text-align: center;
    transition: 0.25s;
/*    margin-top: 100px; */
	margin-top: 25px
}

.box input[type="text"],
.box input[type="password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 10px 10px;
    width: 250px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s
}

.box h1 {
    color: white;
    text-transform: uppercase;
    font-weight: 500
}

.box input[type="text"]:focus,
.box input[type="password"]:focus {
    width: 300px;
    border-color: #2ecc71
}

.box input[type="submit"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer
}

.box input[type="submit"]:hover {
    background: #2ecc71
}

.forgot {
    text-decoration: underline
}

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0
}

ul.social-network li {
    display: inline;
    margin: 0 5px
}

.social-network a.icoFacebook:hover {
    background-color: #3B5998
}

.social-network a.icoTwitter:hover {
    background-color: #33ccff
}

.social-network a.icoGoogle:hover {
    background-color: #BD3518
}

.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i {
    color: #fff
}

a.socialIcon:hover,
.socialHoverClass {
    color: #44BCDD
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 20px
}

.social-circle li i {
    margin: 0;
    line-height: 50px;
    text-align: center
}

.social-circle li a:hover i,
.triggeredHover {
    transform: rotate(360deg);
    transition: all 0.2s
}

.social-circle i {
    color: #fff;
    transition: all 0.8s;
    transition: all 0.8s
}

/* My code */
.box p {
    color: white;
/*    text-transform: uppercase; */
    font-weight: 100
}

h1{
 font-size: 35px;
}
@media screen and (max-width: 700px) {
  h1{
   font-size: 25px
  }
  .box {
  	width: 100%;
    padding: 5px;
    position: absolute; 
/* 	position:relative */
 /*   top: 2%; */
  left: 0%; 
  write: 1%;
    background: #191919;
    ;
    text-align: center;
    transition: 0.25s;
/*    margin-top: 100px */
	margin-top: 25px
  
  }
  
	.box input[type="text"],
	.box input[type="password"] {
		border: 0;
		background: none;
		display: block;
		margin: 5px auto;
		text-align: center;
		border: 2px solid #3498db;
		padding: 10px 10px;
		width: 225px;
		outline: none;
		color: white;
		border-radius: 24px;
		transition: 0.25s
	}
	
	.card{
	 /*   margin-bottom:20px; */
		margin-top:20px;
		border:none;
	}
	
} => This tells the browser that when screen is 700px and below, h1 element font-size = 25px 


@media screen and (min-width: 700px) {
	  h1{
	   font-size: 45px
	  }
	  
	  .box {
		width: 75%;
		padding: 40px;
		position: absolute; 
	/* 	position:relative */
	 /*   top: 2%; */
	   left: 10%;  
		background: #191919;
		;
		text-align: center;
		transition: 0.25s;
	/*    margin-top: 100px; */
		margin-top: 25px
	}
}
=> This tells the browser that until screen is 700px and above, h1 element font-size = 45px


.boxs [type="select"]{
		border: 0;
		background: none;
		display: block;
		position: absolute;
		margin: 5px auto;
		text-align: center;
		border: 2px solid #3498db;
		padding: 10px 10px;
		
		
		/*width: 50%px; */
		outline: none;
		color: white;
		border-radius: 50px;
		transition: 0.25s
	}
.box [type="select"]:focus{
    width: 300px;
    border-color: #2ecc71
}

h2 {
    color: white;
 	font-size: 30px;
}

