.focus-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 10px 0;
    outline: none;
}

.focus-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
    background-color: #f8f9ff;
}

.focus-textarea {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 10px 0;
    outline: none;
    resize: vertical;
    min-height: 80px;
}

.focus-textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40,167,69,0.25);
    background-color: #f8fff8;
}