*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background-color: #ced3e7;
    font-family: 'Roboto', sans-serif;
}

.heading{
    width: 80%;
}
.logo{
    width: 90px;
}
.heading h1{
	text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: #412277;
}
.container{
	margin-top: 40px;
	width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    min-height: 100%;
    background-color: #f8f9fb;
    display: flex;
    box-shadow: 5px 10px 38px rgba(0,0,0,0.2);
    border-radius: 10px;
    
}

.kotak_form{
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    width: 55%;
    font-size: 13px;
}

.image{
    width: 45%;
}
.img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 15px;
    border-radius: 0 10px 10px 0;
}

label{
	font-weight: bold;

}
/************BUTTON*****************/
.btn{
    margin-top: 15px;
    margin-left: 50px;
    width: 200px;
    height: 50px;
    border-radius: 40px;
    outline: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    background: #445a94;
    color: #fff;
    box-shadow: 8px 10px 30px rgba(0, 0, 0, 0.329);
    transition: 0.4s;
}
.btn:hover{
    background: #4b2888;
    color: #fff;
}

@media(max-width:1250px){
    .container{
        width: 95%;
    }
}
@media(max-width:768px){
    .container{
    	margin-top:0px;
        width: 100%;
        height: 98% !important;
        position: static;
        transform: translate(0,0);
    }
}
@media(max-width:1000px){
    .image{
        display: none;
    }
    .container{
        height: 95vh;
    }
    .kotak_form{
        width: 100%;
    }
}
@media(max-width:500px){
    .wrap{
        flex-direction: column;
    }
    .f1,.f2{
        width: 100%;
        margin: 0px;
    }
}

/* autocomplete */

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

