* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f3f7f8;
    padding: 20px;
}

.form-wrapper {
    max-width: 450px;
    background: #fff;
    margin: auto;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo img {
    max-width: 140px;
}

.form-group {
    margin-bottom: 12px;
}

.row {
    display: flex;
    gap: 10px;
}

.row .form-group {
    flex: 1;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: #063c45;
    margin-bottom: 4px;
    display: block;
}

input, textarea, select {
    width: 100%;
    padding: 9px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

textarea {
    resize: none;
    height: 60px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #063c45;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #063c45;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #04505c;
}

/* Mobile */
@media (max-width: 480px) {
    .row {
        flex-direction: column;
    }
}
/* --- existing CSS same rahega --- */

/* POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popup h2 {
    color: #063c45;
    margin-bottom: 10px;
}

.popup p {
    font-size: 14px;
    margin-bottom: 15px;
}

.popup button {
    background: #063c45;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
