.db-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    border-radius: 10px;
}

.db-wrapper .inp-txt {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}


.db-wrapper .form-group {
    margin-bottom: 20px;
}

.db-wrapper .form-group .inp-vals .form-control {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000;
    outline: none;
}

.db-wrapper .form-group .inp-vals {
    display: grid;
    grid-template-columns: repeat(2, 6fr);
    grid-gap: 30px;
}



.db-wrapper .form-group .inp-vals .form-control::placeholder {
    color: #000;
}

.db-wrapper .form-group.w-width .inp-vals {
    grid-template-columns: repeat(1, 12fr);
}

.db-wrapper .form-action .btn {
    padding: 13px 25px;
    color: #fff;
    border: 1px solid #262626;
    background-color: #262626;
    cursor: pointer;
    font-size: 20px;
    border-radius: 7px;
    transition: all 0.5s ease;
}

.db-wrapper .form-action .btn:hover {
    background-color: #fff;
    border-color: #262626;
    color: #262626;
}

.db-wrapper .note {
    text-align: center;
    font-weight: 500;
    padding-top: 20px;
    font-size: 17px;
}

.db-wrapper .note a {
    color: #262626;
    font-weight: 600;
    margin-top: 10px;
    display: block;
    text-transform: capitalize;
    text-decoration: none;
}

.db-wrapper .form-message {
    text-align: center;
    padding-top: 20px;
}

.db-wrapper .form-message span {
    font-size: 22px;
    color: #008000;
}

@media screen and (max-width: 768px) {
    .db-wrapper .form-group .inp-vals {
        display: grid;
        grid-template-columns: repeat(1, 12fr);
        grid-gap: 15px;
    }
}