/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Body styling */
body {
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #092635;
    background-position: center;
}

.contact-mainview {
    background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   
    border-radius: 5px;
    padding: 1vw 1vw 1vw 1vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cmv-left {
    text-align: left;
    width: 30vw;
    overflow: hidden;
}

    .cmv-left img {
        width: 85%;
    }

    .cmv-left h4 {
        font-size: 1.5vw;
        font-family: "Nunito", sans-serif;
        font-weight: 100;
    }

.cmv-right {
    padding: 2px;
}

.cmvform {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Nunito", sans-serif;
    font-weight: 100;
}
    .cmvform p{
        color:#FFF;
        text-align:center;
        font-size:1.6vw;
    }

    .cmvform form img {
        width: 100%;
        margin-bottom: 1vw;
        border-radius: 5px;
    }

    .cmvform form {
 
        font-family: "Nunito", sans-serif;
        width: 20vw;
        margin: 0 auto;
      
        padding: 3.5vw;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .cmvform label {
        color: #fff;
        font-weight: 300;
        font-size: 1vw;
        font-family: "Nunito", sans-serif;
        letter-spacing: 3px;
    }

    .cmvform i {
        color: #fff;
        margin-right: 2px;
    }

    .cmvform input[type="text"],
    .cmvform input[type="password"]
    {
        background: transparent;
        width: 100%;
        padding: 0.7vw;
        font-weight: 100;
        font-size: 1.2vw;
        color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
        margin: 0.4vw 0vw 1.2vw 0vw;
    }



    .btn[type="submit"] {
        width: 100%;
        font-family: "Nunito", sans-serif;
        background: #fff;
        border: none;
        color: #000000;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 700;
        font-size: 1.4vw;
        letter-spacing: 4px;
        transition: 0.5s ease;
    }

        .btn[type="submit"]:hover {
            background-color: #e79b0d;
            color: #fff;
        }

@media(max-width:800px) {

   
    .contact-mainview {
        flex-direction: column;
    }

    .cmv-left h2 {
        font-size: 10.5vw;
    }

    .cmvform {
        margin: 5vw 0vw 0vw 0vw;
    }

    .cmv-left h4 {
        font-size: 3.5vw;
    }

    .cmvform label {
        font-size: 2.3vw;
    }

    .btn[type="submit"] {
        font-size: 2.4vw;
    }

    .cmvform form {
        width: 40vw;
    }
    .cmvform p {
        
        font-size: 2.6vw;
    }
}


@media(max-width:430px) {

    

    .cmv-left h2 {
        font-size: 10.5vw;
    }

    .cmvform {
        margin: 5vw 0vw 0vw 0vw;
    }

    .cmv-left h4 {
        font-size: 4.5vw;
    }

    .cmvform label {
        font-size: 3.3vw;
    }

    .btn[type="submit"] {
        font-size: 3.4vw;
    }

    .cmvform form {
        width: 40vw;
    }
    .cmvform input[type="text"],
    .cmvform input[type="password"]{
        font-size:3.5vw;
    }
    .cmvform p {
        font-size: 3.6vw;
    }
}





















.absolute {
    position: absolute;
    top: 200px;
    inset: 85px;
    margin: 0vw 0vw 0vw -10vw;
    justify-content: center;
    z-index: -1;
    display: inline-flex;
    flex-direction: row;
}




.justify-center {
    justify-content: center;
}



.bg-shape2 {
    width: 30vw;
    height: 30vw;
    border-radius: 9999px;
    position: relative;
    animation: two 5s infinite;
}

.bg-shape3 {
    width: 30vw;
    height: 30vw;
    border-radius: 9999px;
    position: relative;
    animation: three 5s infinite;
}

@keyframes three {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        left: -100px;
        top: 0px;
    }

    50% {
        left: 100px;
        top: 0px;
    }

    75% {
        left: 50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes two {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        left: 100px;
        top: 0px;
    }

    50% {
        left: -100px;
        top: 0px;
    }

    75% {
        left: -50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}



.opacity-50 {
    opacity: .4;
}

.bg-blur {
    filter: blur(100px);
}

.bg-primary {
    background-color: rgb(255, 153, 0);
}

.bg-teal {
    background-color: rgb(0, 156, 247);
}

.bg-purple {
    background-color: rgb(140, 0, 215);
}


@media(max-width:430px) {

    .opacity-50 {
        opacity: 20;
    }

    .bg-blur {
        filter: blur(70px);
    }
}
