*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.full-page
{
    height:100% ;
    width: 100%;
    /* background-image: linear-gradient( rgba(0,0,0,0.4),rgba(0,0,0,0.4),url(image/bg1.jpg)); */
    background-image: url(image/bc.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
}
.navbar
{
    display: flex;
    align-items: center;
    padding: 20px;
    padding-left: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
}
nav
{
  flex: 1;
  text-align: right;
}
nav ul
{
    display: inline-block;
    list-style: none;
}
nav ul li
{
    display: inline-block;
    margin-right: 70px;
}
nav ul li a
{
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    font-family: sans-serif;
}
nav ul li button
{
    font-size: 20px;
    color: #fff;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: sans-serif;
}
nav ul li button:hover
{
    color: aqua;
}
nav ul li a:hover
{
   color: aqua;
}
a
{
    text-decoration: none;
    color: palevioletred;
    font-size: 28px;
}
#login-form
{
    /* display: none; */
}
.form-box
{
    width: 380px;
    height: 480px;
    position: relative;
    margin: 2% auto;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    overflow: hidden; 
    /* creating the form with width and heigth etc */
}
.button-box
{
    width: 220px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px #ff61241f;
    border-radius: 30px;
}
.toggle-btn
{
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
}
#btn
{
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: #f3c693;
    border-radius: 30px;
    transition: .5s;
}
.input-group-login
{
    top: 120px;
    position: absolute;
    width: 280px;
    transition: .5s;
}
.input-group-register
{
    top: 120px;
    position: absolute;
    width: 280px;
    transition: .5s;
}
.input-field
{
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid#999;
    outline: none;
    background: transparent;
}
.submit-btn
{
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
    background: #f3c6f3;
    border: 0;
    outline: none;
    border-radius: 30px;
}
.check-box
{
    margin: 30px 10px 34px 0;
}
span
{
    color: #777;
    font-size: 12px;
    bottom: 68px;
    position: absolute;
}
#login
{
    left: 50px;
}
#login input
{
    color: #fff;
    font-size: 15px;
}
#register
{
    left: 450px;
}
#register input
{
    color: #fff;
    font-size: 15px;
}

/* try */
/*row two area styling*/
#slider-fvv{
    background-image: url(image/bg1.jpg);
    height: 100vh;
}
.carousel-item img{
	height:100vh;
	width: 100%;

}
.carousel-caption{
	padding-bottom: 10%;
}
.carousel-caption h1{
	font-size: 45px;
	font-weight: bold;
}
.carousel-caption p{
	font-size: 25px;
}
.carousel-caption button{
	border: 2px solid #fff;
	border-radius: 10px;
	background-color:transparent;
	text-transform: uppercase;
	color: #fff;
	height: 7vh;
}
.carousel-caption button:hover{
	background-color: pink;
}