@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Open+Sans:wght@300;400;600;700&display=swap');

body
{
    background-color: #ebebeb;
    font-family: 'Open Sans', sans-serif;
}

.card
{
	width: 850px;
	height: 500px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
	display: flex;
	background-color: white;
	border-radius: 40px;
    margin: 3rem auto;
}

.brand{
    text-align: left;
    margin: 0.3rem ;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: black;
}

.monkey
{
	background-color: white;
	overflow: hidden;
    margin: 4rem auto 1rem auto;
	height: 170px;
	width: 170px;
	border-radius: 50%;
	background-image: url('images/smile.gif');
	background-size: 90% 85%;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
	display: flex;
	align-items: center;
	flex-direction: column;
}

.monkey img
{
	margin-top:110%;
	height: 170px;
	width: 170px;
	transition: 1s;
}

.right{
    width: 35%;
    background-color: #a79287;
    border-radius: 40px 0 0 40px;
    padding: 1rem;
    align-items: center;
    text-align: center;
}

h2{
    color: white;
}

.msg{
    font-weight: bold;
}

.main
{
    text-align: center;
    margin: auto;
}

h1{
    margin: 0;
}

.connect{
    display: inline-block;
    margin: 0.5rem;
}

.ic{
    font-size: 1.5rem;
    margin: 0.5rem;
    color: #a79287;
}

.ic:hover{
    color: black;
}

input
{
	height: 40px;
	width: 300px;
	border-radius: 20px;
	border:none;
	text-indent: 15px;
	font-size: medium;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
	outline: none;
    margin: 0.5rem;
}

input::placeholder
{
	color:rgb(151, 150, 150);
	font-weight: lighter;
}

.icon{
    font-size: 2.5rem;
    color: white;
}

#btn
{
	height: 40px;
	width: 120px;
	margin: 10px;
    margin-top: 30px;
	background-color: #a79287;
	color: white;
	font-weight: bolder;
    border: none;
    border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
	cursor: pointer;
}
