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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 520px;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    margin-bottom: 40px;
}

.logo-circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    color: #718096;
    font-size: 17px;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.action-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.action-button:hover::before {
    opacity: 1;
}

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

.form-container {
    text-align: left;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.form-container.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.form-container label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
}

.input-container {
    margin-bottom: 32px;
}

.input-container input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    font-size: 16px;
    color: #2d3748;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-container input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

.input-container input::placeholder {
    color: #a0aec0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.back-button {
    background: rgba(255, 255, 255, 0.8);
    color: #718096;
    border: 2px solid rgba(226, 232, 240, 0.6);
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(226, 232, 240, 1);
    color: #4a5568;
    transform: translateY(-1px);
}

.next-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.next-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.next-button:hover::before {
    opacity: 1;
}

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

@media (max-width: 600px) {
    body {
        padding: 20px;
    }
    
    .card {
        padding: 40px 32px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .back-button,
    .next-button {
        width: 100%;
    }
}

 .hidden {
            display: none !important;
        }
        
        .officer-question {
            margin-top: 20px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        
        .officer-question p {
            margin: 0 0 15px 0;
            font-weight: 500;
            color: #333;
            text-align: center;
        }
        
        .officer-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .officer-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 80px;
        }
        
        .officer-btn.yes {
            background-color: #6c757d;
            color: white;
        }
        
        .officer-btn.yes:hover {
            background-color: #667eea;
        }
        
        .officer-btn.no {
            background-color: #6c757d;
            color: white;
        }
        
        .officer-btn.no:hover {
            background-color: #545b62;
        }
        
        .officer-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }