.sec1 {
    min-height: 40vh;
    width: 100%;
    background: rgb(253, 105, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.1;
    text-align: center;
    padding: 20px;
}

.co {
    font-size: clamp(28px, 4vw, 48px);
    color: white;
    font-weight: bold;
}

.cos {
    font-size: clamp(14px, 1.6vw, 20px);
    color: white;
    font-weight: 500;
}

.sec2 {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px;
    flex-wrap: wrap;
}

.head {
    font-size: clamp(16px, 1.6vw, 22px);
    color: rgb(253, 105, 0);
    font-weight: bold;
}

.inp {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
}

.inp input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid black;
    padding: 12px 10vw;
    font-size: 16px;
}

.inp .msg {
    height: 150px;
}

.btn {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    background-color: rgb(253, 105, 0);
    border-radius: 100px;
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sec2 {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sec1 {
        min-height: 35vh;
    }

    .co {
        font-size: 26px;
    }

    .cos {
        font-size: 14px;
    }
}
