
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

.header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 1px solid #ddd;
    background-color:rgb(242, 241, 241)
     
   
}

.first img {
    height: 80px;
    width: auto;
     mix-blend-mode: multiply;
}


.sec {
    display: flex;
    align-items: center;
    gap: 35px;
}

.sec a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    transition: 0.3s;
}

.sec a:hover {
    color: #1c7ed6;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 60px;
    background: #f6f2ea;
}


.left {
    width: 50%;
}

.left h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    
}

.left .para {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
    max-width: 500px;
}


form p {
   
    font-size: 15px;
    color: #333;
}

form input {
    width: 70%;
    padding: 12px;
    border: 1px solid #c9c7c7;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

button {
    margin-top: 15px;
    padding: 12px 25px;
    border: none;
    background: #1c7ed6;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #1864ab;
}

.right {
    width: 45%;
    text-align: center;
}

.right img {
    width: 100%;
    max-width: 500px;
     mix-blend-mode: multiply;
}

@media (max-width: 900px) {
    .main {
        flex-direction: column;
        padding: 30px;
    }

    .left, .right {
        width: 100%;
    }

    .left h2 {
        font-size: 32px;
    }
}