.modern-form {
    max-width: 480px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: #555;
}

textarea {
    height: 120px;
    resize: none;
}

/* SUBMIT BUTTON */
.submit-btn {
    padding: 12px 0;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #333;
}

/* CAPTCHA WRAPPER */
.captcha-wrapper {
    margin-top: 10px;
    width: 100%;
}

/* Captcha input + image same style as phone box */
.captcha-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    height: 48px;
    /* same height as phone input */
    background: #fff;
}

/* Captcha Image Block (Left like +91 box) */
.captcha-side {
    background: #f7f7f7;
    border-right: 1px solid #ddd;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.captcha-side img {
    height: 32px;
    display: block;
}

/* Captcha Input (Right side) */
.captcha-box input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 15px;
    outline: none;
}

/* Refresh Link */
.captcha-refresh a {
    color: #0a66c2;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.captcha-refresh a:hover {
    color: #004999;
}

/* Error Message */
.captcha-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* hide */
.d-none {
    display: none;
}

#phonepd {
    padding-left: 100px !important;
}

#captcha_side {
    padding: 10px;
    margin-top: 10px;
}