* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.badge {
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.salary {
    font-size: 24px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.benefits {
    text-align: left;
    margin-bottom: 30px;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}

.form-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.privacy-text {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 15px;
}

.urgency {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    color: #856404;
}

.flag {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .landing-card {
        padding: 25px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .salary {
        font-size: 20px;
    }
}