*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


.inc-canada-tax-container {
    max-width: 520px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.inc-canada-tax-title {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.inc-canada-tax-group {
    margin-bottom: 18px;
}

.inc-canada-tax-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.inc-canada-tax-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.inc-canada-tax-input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 6px rgba(74,144,226,0.3);
}

.inc-canada-tax-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.inc-canada-tax-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.inc-canada-tax-result {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    background: #f4f9ff;
    border-left: 5px solid #4a90e2;
    display: none;
}

.inc-canada-tax-result p {
    margin: 8px 0;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
   .inc-canada-tax-container {
    
    margin: 20px auto;

    padding: 20px;
    
}
}