body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6b48ff, #ff758f);
    color: #1a1a1a;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 900px;
    width: 90%;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    min-width: 300px;
    margin-top: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

form label {
    font-size: 1.25rem;
    color: #333;
}

h1, h2, h3, h4 {
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

h3 {
    font-size: 1.75rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

h4 {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h1:hover, h2:hover, h3:hover, h4:hover {
    transform: scale(1.05);
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    height: auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-field:focus {
    border-color: #2a5298;
    outline: none;
    box-shadow: 0 0 12px rgba(42, 82, 152, 0.4);
    transform: scale(1.01);
}

.btn {
    background-color: #2a5298;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn:hover {
    background-color: #1e3c72;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.captcha {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a5298;
    padding: 14px;
    border: 2px solid #a3bffa;
    border-radius: 12px;
    background: #edf2ff;
    margin-bottom: 15px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(42, 82, 152, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(42, 82, 152, 0.7);
    }
}

.alert {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alert:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.success {
    background-color: #e6ffe6;
    color: #1a3c34;
    border: 1px solid #b3ffb3;
}

.error {
    background-color: #ffe6e6;
    color: #721c24;
    border: 1px solid #ff9999;
    padding: 16px;
    border-radius: 10px;
    margin: 20px;
}

.modal {
    position: fixed;
    margin: 15% auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .container {
        padding: 20px;
        width: 95%;
    }
    h1 {
        font-size: 2rem;
    }
    h2, h3 {
        font-size: 1.5rem;
    }
}

.parent-incident-info {
    background-color: #f5f7fa;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}