/* ========== Page Layout ========== */

body.full-height-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}


/* ========== Title ========== */
.survey-section .survey-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 75px;
    text-align: center;
}

/* ========== Form Container ========== */
.agent-register-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ========== Labels ========== */
.agent-register-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* ========== Text Inputs ========== */
.agent-register-form input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* ========== Dropdown ========== */
.agent-register-form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%204%205%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23444%22%20d%3D%22M2%205L0%200h4z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

/* ========== Mobile Input with +91 ========== */
.mobile-input {
    position: relative;
    margin-top: 6px;
}

.mobile-input .prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #333;
    pointer-events: none;
    z-index: 1;
}

.mobile-input input {
    width: 100%;
    padding: 10px 10px 10px 50px; /* padding-left adjusted for +91 */
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

/* ========== Button ========== */
.submit-btn {
    margin-top: 25px;
    padding: 12px 20px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #0f5cc0;
}

/* ========== Success Message ========== */
.success-msg {
    color: green;
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
}


