* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.company-logo {
    text-align: center;
    margin-bottom: 40px;
}

.company-logo h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.company-logo p {
    color: #666;
    font-size: 1.2em;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"], input[type="tel"], input[type="file"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#message.success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

#message.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #f5c6cb;
}

.image-preview {
    margin-top: 10px;
}

.image-preview img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
    }
}
/* Add these styles to existing style.css */

.education-section {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #667eea;
}

.education-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.education-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.doc-group {
    margin-bottom: 20px;
}

.doc-group:last-child {
    margin-bottom: 0;
}

/* PDF Preview Styling */
.pdf-preview {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 10px;
    background: #e9ecef;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.pdf-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

.pdf-info {
    flex: 1;
}

.pdf-info span {
    display: block;
    font-size: 12px;
    color: #666;
}