*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
}
body{
    height: 100vh;
    background: linear-gradient(
        135deg,
        #2B2B34,
        #202024
    );
}
.container{
    background-color: #ffffff;
    width: 70%;
    min-width: 420px;
    padding: 35px 50px;
    transform: translate(-50%,-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 10px;
    box-shadow: 20px 30px 25px rgba(0,0,0,0.15);
}
h1{
    font-size: 30px;
    text-align: center;
    color: #1c093c;
}
p{
    position: relative;
    margin: auto;
    width: 100%;
    text-align: center;
    color: #606060;
    font-size: 16px;
    font-weight: 400;
}
form{
    width: 100%;
    position: relative;
    margin: 30px auto 0 auto;
}
.row{
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    grid-gap: 20px 30px;
    margin-bottom: 20px;
}
label{
    color: #1c093c;
    font-size: 16px;
}
textarea,
input{
    width: 100%;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid #000000;
    margin-top: 5px;
	color: #3F4550;
}
textarea{
    resize: none;
}
textarea:focus,
input:focus{
    outline: none;
    border-color: #6f6df4;
}
button{
    border: 1px solid transparent;
    padding: 10px 20px;
    background: linear-gradient(
        130deg,
        #2B2B34,
        #202024
    );
    color: #ffffff;
    border-radius: 30px;
	font-family: 'Poppins', sans-serif;
	line-height: 1.4;
	font-size: 14px;
	font-weight:400;
	border-radius: 30px;
	transition: all .55s ease;
}

button:hover{
	display: inline-block;
	color: #202024;
	background: transparent;
	border: 1px solid #202024;
	border-radius: 30px;
	transform: translateX(8px);
	
}

.contact-img img{
	width: 100%;
	height: auto;
}

.column-img{
	grid-column: col;
}

.column-heading{
	grid-column: col 2 / span 3 ;
}
