/* Container Wrapper */
.gpo-wrapper { 
    max-width:520px; 
    margin:20px auto; 
    padding:25px; 
    border:1px solid #eee; 
    border-radius:8px; 
    background:#fafafa; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Form Styles */
.gpo-form { 
    display:flex; 
    flex-direction:column; 
    gap:12px; 
}

.gpo-form input { 
    padding:12px; 
    font-size:14px; 
    border:1px solid #ccc; 
    border-radius:6px; 
    width: 100%;
    box-sizing: border-box;
}

.gpo-form button { 
    padding:12px; 
    font-size:16px; 
    font-weight: 600;
    border-radius:6px; 
    border:0; 
    cursor:pointer; 
    background:#2b6cb0; 
    color:#fff; 
    transition: background 0.3s;
}

.gpo-form button:hover { 
    background:#2c5282; 
}

.gpo-message { 
    margin-top:15px; 
    font-size:14px; 
    text-align: center;
}

/* Thank You Section Styles */
.gpo-thank-you {
    text-align: center;
    color: #333;
    animation: fadeIn 0.6s ease-in;
}

.gpo-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 25px;
}

.gpo-thank-you h3 {
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.gpo-thank-you p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.gpo-thank-you a {
    color: #0085ba;
    text-decoration: underline;
    font-weight: 600;
}

.gpo-thank-you a:hover {
    color: #005a87;
    text-decoration: none;
}

.gpo-signoff {
    margin-top: 25px;
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}