/* Professional PayPal Refund Form Styles */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    color: #003087;
    font-size: 32px;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: 600;
}

h2 {
    color: #333;
    font-size: 24px;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.account-info {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 0 0 30px 0;
}

h3 {
    color: #003087;
    font-size: 18px;
    margin: 20px 0 15px 0;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: #003087;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.1);
}

input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #003087;
    font-size: 13px;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #002d6b;
    text-decoration: underline;
}

.form-options {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0 8px 0 0;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.4;
}

.checkbox-label a {
    color: #003087;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

button {
    background-color: #003087;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #002d6b;
}

button:active {
    transform: translateY(1px);
}

button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.terms-notice {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.terms-notice .checkbox-label {
    font-size: 12px;
    color: #666;
}

.help-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.help-section p {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #666;
}

.help-section a {
    color: #003087;
    text-decoration: none;
}

.help-section a:hover {
    text-decoration: underline;
}

.security-info {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 10px !important;
}

.row {
    display: flex;
    gap: 10px;
}

.col {
    flex: 1;
}

.success {
    background-color: #d1fae5;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #10b981;
    margin-bottom: 30px;
}

.success h2 {
    color: #065f46;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.success p {
    color: #047857;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
}

