.property-tax-calculator {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #4a90e2, #145388);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.property-tax-calculator:hover {
    transform: scale(1.02);
}

.property-tax-calculator h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.input-field {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.input-field:focus {
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    outline: none;
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}

.btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 8px;
    background-color: #ff7b54;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
}

.result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
