*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: Roboto,sans-serif;
}
body
{
    background :url("../images/bg.jpg") no-repeat top center;
    background-size: cover;
    height: 130vh;
}
.institute-name
{
    position: absolute;
    top: 10%;
    left: 26%;
    height: 12%;
    width: 50%;
    background: rgba(0,0,0,0.8);
    color: aqua;
    text-align: center;
    border-radius: 50px;
}
.heading-1
{
    text-align: center;
    position: absolute;
    height: 6%;
    width: 25%;
    top: 33%;
    left: 39%;
    background: rgba(0,0,0,0.8);
    color: aqua;
    border-radius: 20px;
}
.wrapper
{
    position: absolute;
    top: 52%;
    left: 15%;
    height: 75%;
    width: 70%;
    background: rgba(0,0,0,0.8);
    border-radius: 50px;
    font-size: 17px;
}
.left
{
    position: absolute;
    top: 13%;
    left: 13%;
    height: 65%;
    width: 25%;
    padding: 10% 2% 5% 5%;
   background: transparent;
}
.right
{
    position: absolute;
    top: 13%;
    right: 13%;
    height: 65%;
    width: 25%;
    padding: 10% 2% 5% 5%;
    background: transparent;
}
.btn {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #010b12);
    background-image: -moz-linear-gradient(top, #3498db, #010b12);
    background-image: -ms-linear-gradient(top, #3498db, #010b12);
    background-image: -o-linear-gradient(top, #3498db, #010b12);
    background-image: linear-gradient(to bottom, #3498db, #010b12);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    color: #ffffff;
    font-size: 15px;
    padding: 5px 40px 5px 40px;
    text-decoration: none;
    cursor: pointer;
    border: 5px;
}

.btn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #88a6ba);
    background-image: -moz-linear-gradient(top, #3cb0fd, #88a6ba);
    background-image: -ms-linear-gradient(top, #3cb0fd, #88a6ba);
    background-image: -o-linear-gradient(top, #3cb0fd, #88a6ba);
    background-image: linear-gradient(to bottom, #3cb0fd, #88a6ba);
    text-decoration: none;
    cursor: pointer;
}
button
{
    margin-bottom: 10px;
}